标签:多行注释 查询语句 fill 一个 可变 tab 就会 切换数据库 连接数据库
1 -- MySQL数据库单行注释 2 /* 3 MySQL数据库多行注释 4 */ 5 6 -- 所有的语句都以分号结尾 7 8 mysql -u root -p123456 --连接数据库 9 10 update mysql.user set authentication_string=password(‘654321‘) where user=‘root‘ and host=‘localhost‘; 11 flush privileges; --修改用户密码并刷新权限 12 13 -------------------------------------------------- 14 15 show databases; --查看所有的数据库 16 use school; --切换数据库使用use 数据库名 17 show tables; --查看数据库中的所有表 18 describe student; --显示数据库中student表的信息 19 20 create database westos; --创建一个数据库 21 22 exit; --退出连接
补充: show warnings; --查看warning
标签:多行注释 查询语句 fill 一个 可变 tab 就会 切换数据库 连接数据库
原文地址:https://www.cnblogs.com/zhihaospace/p/12254093.html