整理的一些简单的sql语句
有什么不对的地方,请指正,因为我也在用这些命令。
谢谢!
create database 库名;创建数据库
show databases; 查看数据库
use 库名; 进入去数据库
show tables;查看表的数据
drop database 库名;删除数据库
create table epm【表名】(ename【列名】 varchar(10),sal【列名】date,aaa【列名】int(2));创建表
desc 表名;查看表的内容
show create table 表名 \G;查看表的信息(\G能够使记录按照字段竖着排列)
drop table 表名;删除表
alter table 表名 modify 列名 varchar(20);修改表中列字段定义
alter table 表名 add column 列名 int(3);增加表中一列
alter table 表名 drop column 列名;删除表中列
alter table 表名 change 原列名 新列名 int(4) ;修改列的名字和类型
alter table 表名 add 新加列名 date after 原有列名;将新加列名加在原有列名之后
alter table 表名 modify 原有列名 int(3) first;修改列并放在最前面
alter table 原表名 rename 新表名 ;修改表的名字
insert into 表名 (列名,列名) values('新纪录','新纪录');向表中插记录
insert into 表名 values('新纪录','新纪录');也可以不指定字段名,但是后面记录顺序要和字段顺序一致
insert into 表名 values(新纪录,'新纪录'),(新纪录,'新纪录');按顺序一次插入两条记录
update 表名 set 字段=记录 where 字段='记录';更改表内容
select * from 表名【列名】;查看表内容【查看列内容】
select 字段,字段 from 表名;把选中的记录显示出来
select distinct 字段 from 表名;查询不重复的记录
select * from 表名 where 字段=1;查询所有字段里为1的记录
select * from 表名 where 字段=1 and 字段<3000;查询两个字段为1并且大于3000的记录
select * from 表名 order by 字段;把字段的记录按照从低到高显示
select * from 表名 order by 字段,字段 desc;相同的前两条记录,按高低显示
select * from 表名 order by 字段 limit 3;按照字段高低排序的前3条记录
select * from 表名 order by 字段 limit 1,3;按照字段高低排序后从第二条记录开始,显示3条记录
select 字段 from 表名;统计表中总记录
select 字段1,字段2 from 表名 group by 字段1;显示字段1的数据以及总数据只显示字段2的数据
select 字段1,字段2 from 表名 group by 字段1 with rollup;显示所有字段的数据以及总数据
select 字段1,字段2 from 表名 group by 字段1 having 字段2>1;统计大于1的字段记录
select sum(字段),max(字段),min(字段) from 表名;统计字段总的、最大、最低的记录
select 字段1,字段2 from 表名1,表名2 where 表名1.字段3=表名2.字段3;显示表1和表2中的记录并在字段3位置显示
select * from 表1 where 记录 in(select 记录 from 表2);显示所有字段在表2的记录
delete from 表名 where 字段='内容';删除表中字段关于内容的记录
上一篇: Python面向对象的基本概念介绍