基本SQL语句
查询表
1、Select * from 职工                2、 Select 职工号,姓名,工资 from 职工 
And 、 and not
Select * from 职工号 where(仓库号='wh1' or 仓库号='wh2') And not 性别='女' and 工资>=1300 and 工资<=2100
select中distinctOr   in
Select * from 订购单 where 职工号='zg1' or 职工号='zg2' Or 职工号='zg11' or 职工号='zg15'
Select * from 订购单 where 职工号 in('zg1', 'zg2', 'zg11', 'zg15')
Select * from 订购单 where 职工号!='zg1' or 职工号!='zg2' Or 职工号!='zg11' or 职工号!='zg15'
Select * from 订购单 where 职工号 not in('zg1', 'zg2', 'zg11', 'zg15') 
模糊查询 通配符  %    _    []    [^]
Select * from 职工 where 姓名 not like'王%'
Select * from 职工 where 姓名 not like'王%_'
空值null查询
Select * from 职工 where 姓名 is null
Between …and
Select * from 职工 where 工资 not  between 1300 and 1900
显示无重复的数据
Select distinct 工资 from 职工表
单表嵌套查询
多级嵌套查询

函数
多级排序
分组查询
In 和Exists 的区别:  Exists 用于判断是否返回查询语句,  In 用于
保存查询
合并查询
交集查询:
超连接
内连接
插入数据
更新数据
删除数据

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。