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概述
1.1 数据库相关概念 Hello Database. Hello Database. 1.2 MySQL数据库1.2.1 启动停止 windows Linux 启动 net start mysql80 systemctl start mysqld 停止 net stop mysql80 systemctl stop mysqld 1.2.2 客户端连接1).方式一:使用MySQL提供的客户端命令行工具(输入密码即可) 2).方式二:使用系统自带的命令行工具执行指令 注意: 需要配置PATH环境变量 12345678mysql [-h 127.0.0.1] [-P 3306] -u root -p参数:-h : MySQL服务所在的主机IP-P : MySQL服务端口号, 默认3306-u : MySQL数据库用户名-p : MySQL数据库用户名对应的密码 1.2.3 数据模型1). 关系型数据库(RDBMS) 概念:建立在关系模型基础上,由多张相互连接的二维表组成的数据库。 特点: A. 使用表存储数据,格式统一,便于维护。 B. 使用SQ...

