目录
select * from 表名?
例子:
select * from sun? ? ? ? ? ? ? ? ????????????????????????输出sun表中所有的列
select 列1,列2.... from 表名?
select name,age.... from sun? ? ? ? ? ? ? ? 输出sun表中name age列的所有内容?
select 列1,列2.... from 表名? where 条件?
例子:
select name,age.... from sun? ? where name=‘小明’? ? ? ? ?
输入表中小明的 名字和年龄
select * from 表 where age between 13?and 20? ?
输出 年龄在13到20之间的人所有信息
都要满足条件
select * from 表 where age=‘18’ and adress=‘北京’?
?输出年龄18 并且在北京人的信息
满足一点即可
select * from 表 where 工资=6000 or 奖金=1000?
输出 工资等于6000或者奖金等于1000的信息
select * from 表 where 数学 in? (80 ,90,100)
输出 数学成绩等于80 90 100的所有人信息
n表示需要返回的行数
like %?????????????
%` 表示零个或多个字符的通配符。
select * from 表 where name like ‘王%’
查找出姓王的同学
like _
下划线通配符 `_`
select * from 表 where name like ‘王_ _’
查找出姓王某某的同学??
select?DISTINCT 列1,列2 .... from 表名??
select 列1,列2..... from 表 order by? age desc? ? ? ? (asc| desc)升序 降序
select name AS 名字, age AS 年龄? from 表??
select? name,age,address? into 新表1? ? from 表2
将从表2 查询出的 name age adress列 信息 插入到? ?新表1之中
insert into 表2 (列1,列2...)select 列 from 表1