一、基本用法
select 字段1,字段2... from 表名;
select * from 表名;
二、查询语句
select 'name';
select 1+3;
select 1/3;
select 'a'+'b';
select 'a'+1;
select mod(20,3)
select 20%3
create table student(
sid char(8) primary key,
sname varchar(20),
age int default 0
);
show tables;
desc student;
insert into student values
(值1,值2);
三、别名
作用就是简化
select 字段1 [as] 字段1别名,
字段2 [as] 字段2别名,
字段3 [as] 字段3别名
from 表名;
select sid as '学号',
sname [as] '姓名'
from student;
select 字段 from 表名 表别名;
select s.sid from student s;
select * from 表1,表2;
四、进阶查询(where)
1.条件查询
select 列名 from 表名 where 条件;
1.等于 =
2.不等于 <>
3.逻辑与 and
4.逻辑或 or
2.区间查询
select * from student where age between 30 and 35;
3.模糊查询
select 列名 from 表名 where 列 like pattern;
select * from student where sname like '张%';
4.in查询
select 列名 from 表名 where 列名 in (值1,值2,值3);
select 列名 from 表名 where 列名 not in (值1,值2,值3);
5.坑
五、辅助查询
1.排序
select 字段名 from 表名 order by 字段1 [asc|desc], 字段2 [asc|desc];
继续扯个蛋
|