SQL Server查询语句大全
            功能
1据操作
Select      --从数表中据行和列
Insert      --表添加新据行
Delete      --从数表中据行
Update      --更新表中的
2据定
Create TABLE    --建一个数
Drop TABLE    --从数除表
Alter TABLE    --修改结构
Create VIEW    --建一个视图
Drop VIEW    --从数视图
Create INDEX    --为数建一索引
Drop INDEX    --从数除索引
Create PROCEDURE  --建一储过
Drop PROCEDURE    --从数除存储过
Create TRIGGER    --建一个触发
Drop TRIGGER    --从数触发
Create SCHEMA    --添加一新模式
Drop SCHEMA    --从数除一模式
Create DOMAIN    --建一个数
Alter DOMAIN    --update语法大全变域定
Drop DOMAIN    --从数除一
3据控制
GRANT      --授予用户访问权
DENY      --户访问
REVOKE      --解除用户访问权
4、事控制
COMMIT      --前事
ROLLBACK    --中止前事
SET TRANSACTION    --义当前事务数访问特征
5、程序化SQL
DECLARE      --为查询设定游
EXPLAN      --为查询描述访问计划
OPEN      --查询结果打
FETCH      --索一行查询结
CLOSE      --关闭
PREPARE      --为动态执行准SQL
EXECUTE      --动态SQL
DESCRIBE    --描述准好的查询
6、局部
declare @id char(10)
--set @id = '10010001'
select @id = '10010001'
7、全局
---@@开头
8IF
declare @x int @y int @z int
select @x = 1 @y = 2 @z=3
if @x > @y
print 'x > y' --打印字符串'x > y'
else if @y > @z
print 'y > z'
else print 'z > y'
9CASE
use pangu
update employee
set e_wage =
case
when job_level = ’1’ then e_wage*1.08
when job_level = ’2’ then e_wage*1.07
when job_level = ’3’ then e_wage*1.06
else e_wage*1.05
end
10WHILE CONTINUE BREAK
declare @x int @y int @c int
select @x = 1 @y=1
while @x < 3
begin
print @x --打印x
while @y < 3
  begin
    select @c =100*@x+ @y
    print @c --打印c
    select @y = @y + 1
  end
select @x = @x + 1
select @y = 1
end
11WAITFOR
-- 等待1 2 分零3 秒后才Select
waitfor delay ’01:02:03’
select * from employee
-- 等到11 点零8 分后才Select
waitfor time ’23:08:00’
select * from employee
12Select
  select *(列名) from table_name(表名) where column_name operator value
  ex:(宿主)
select * from stock_information where stockid  = str(nid)
    stockname = 'str_name'
    stockname like '% find this %'
    stockname like '[a-zA-Z]%' --------- ([]指定的范)
    stockname like '[^F-M]%'  --------- (^排除指定范)
    --------- 只能在使用like关键字的where子句中使用通配符)
    or stockpath = 'stock_path'
    or stocknumber < 1000
    and stockindex = 24
    not stocksex = 'man'
    stocknumber between 20 and 100
    stocknumber in(10,20,30)
    order by stockid desc(asc) --------- 排序,desc-降序,asc-升序
    order by 1,2 --------- by
    stockname = (select stockname from stock_information where stockid = 4)

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