数据库基本命令行
-
mysql -uroot -p123456 -- 连接数据库 update mysql .user set authentication_string=password(‘123456‘)where user=‘root‘ and Host = ‘localhost‘; -- 修改用户密码 -- ------------------------------------ -- 所有语句都使用‘;‘结尾 mysql> use school -- 切换数据库 ues 数据库名 Database changed show tables; -- 查看数据库中的所有表 describe student; -- 显示数据库中的所有的表的信息 create database student; -- 创建一个数据库 use student; --使用数据库 SHOW DATABASES; --查看所有的数据库 exit; -- 直接退出 -- 单行注释 /* 多行注释 */
数据库语言
** CRUD增删改查 API(调用) CRUD(业务!)**
DDL 定义
DML 操作
DQL 查询
DCL 控制