1:Linux登陆mysql:mysql -u root -p
2:查找所有表的语句
select table_name from information_schema.tables where table_schema=‘当前数据库’;
3:使用ALTER修改root用户密码,方法为
ALTER user ‘root’@‘localhost’ IDENTIFIED BY ‘新密码’
4:使用数据库:
Use ‘数据库名’
5:show databases; --显示所有数据库列表;
6:show tables; --显示该数据库中的所有表
7:新建数据库:create database 数据库名;
8:drop database 数据库名; --删除数据库mydatabase
9:desc 表名; --------显示表结构,字段类型,主键,是否为空等属性,但不显示外键。
10:select * from information_schema.columns where table_schema = ‘zxcp’(表所在数据库)and table_name = ‘student’(你要查的表);----------查询表中列的注释信息
11:select column_name,column_comment from information_schema.columns where table_schema =‘db’ and table_name = ‘tablename’ ;-------只查询列名和注释
12:ESCAPE用来制定转义字符
13:IN关键字:不支持通配符,IN()括号相当于等号;
14:IS NULL IS NOT NULL 用来判断是否为空
15: