MySql 常用命令

时间:2021-07-01 16:40:54   收藏:0   阅读:0

1.show databases   展示所有数据库

2.建表  

技术图片

 

 

column : 列名

PK:唯一主键

NN:不能为空

AI:自动增加

3.修改删除表 

技术图片

4.使用库 

技术图片

 

5.屏蔽 -- 加空格   切近加空格 

6.插入指定的表数据

技术图片

 

 

常用的增删改查 和 模糊搜索 排序 对应下面demo即可 

-- show tables;
-- insert into users(username,`password`,realname)values(zhangsan,123,张三); 
-- select * from users;
-- select id,username from users;
-- select * from users where username=zhangsanand `password`=123; 
-- select * from users where username=zhangsanor `password`=121; 
-- select * from users where username like%zhang%;
-- select * from users where password like%1% order by id desc ;   

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!