Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
MySQL的基操
MySql常用命令123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778mysql -u用户名 -p密码 #登录数据库quit #退出数据库show databases; #查看数据库use 库名; #进入数据库,切换数据库cdShow tables; #查看当前所在数据库中有哪些表desc 表名; #查看表的字段结构数据类型select * from 表名; #查看表里的信息数据内容select * from 表名 where 字段名(id)=数据信息(3); #等值查询,where指定查看表里id=3的信息create database 库名; #创建数据库show create database 库名; #查看创建数据库时的语句create database 库名 characte ...