SQL经典语句和要点整理
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
SQL经典语句和要点整理
*SQL中的保留关键字
action add aggregate all alter after and as asc avg avg_row_length auto_increment between bigint bit binary blob bool both by cascade case char character
change check checksum column columns comment constraint create cross current_date current_time current_timestamp data database databases date datetime day day_hour day_minute day_second dayofmonth dayofweek dayofyear dec decimal default delayed delay_key_write delete desc describe distinct distinctrow double drop
*得出SQL语句的执行时间的方法
例如:
declare @d datetime
set @d=getdate() select * from ycdata1 select [alltime]=datediff(ms,@d,getdate())
红色为我们要执行的sql语句,结果为执行花费时间
*清空数据库中所有表的数据(已经测试过,可以正常运行)
declare crsr cursor
for SELECT [name] FROM DBO.SYSOBJECTS
WHERE OBJECTPROPERTY(ID,N'IsTable')=1 and type = 'U' and [name] <> 'dtproperties' --and crdate...
open crsr
declare @tblName sysname
fetch crsr into @tblName
EXEC('truncate table '+@tblName)
while @@fetch_status=0
fetch next from crsr into @tblName
EXEC('truncate table '+@tblName)
close crsr
deallocate crsr //--删除以释放游标//可以为crdate字段指定表的创建日期
*常用SQL语句扩展和例子
一数据库筛选记录:
SQL= select * from tb1 where field1 =’value1’order by id desc
Select * from tb1 where field1 like ‘% value1%’order by id desc
Select top 10 * from tb1 where field1 =’ value1’order by id,age desc
Select * from tb1 where field1 in(‘value1’, ‘value2’, ‘value3’,)
Select * from tb1 where field1 between value1 and value2
select * from tb1, tb2 where tb1.id *= tb2.id
select a,b,c from tb1 where a IN (select d from b ) //子查询
select * from tb1 where id not in(select id from tb1 where 表达式) order by id desc
更多:
说明:两张关联表,删除主表中已经在副表中没有的信息
delete from table1 where not exists ( select * from table2 where table1.field1=table2.field1 )
说明:Distinct查询数据库存表内不重复的记录
Select Distinct field1 From tb1
说明:count函数,查询数库表内有多少条记录,“field1”是指同一字段
"Select Count(*) From tb1 where field1>#18:0:0# and field1< #19:00# "
说明:两张关联表,删除主表中已经在副表中没有的信息
delete from table1 where not exists ( select * from table2 where table1.field1=table2.field1 )
说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用)
法一:select * into b from a where 1<>1
法二:select top 0 * into b from a
说明:拷贝表(拷贝数据,源表名:a 目标表名:b) (Access可用)
insert into b(a, b, c) select d,e,f from b;
说明:跨数据库之间表的拷贝(具体数据使用绝对路径) (Access可用)
insert into b(a, b, c) select d,e,f from b in ‘具体数据库’ where 条件
例子:..from b in '"&Server.MapPath(".")&""data.mdb" &"' where..
说明:外连接查询(表名1:a 表名2:b)
select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c
说明:日程安排提前五分钟提醒
SQL: select * from 日程安排 where datediff('minute',f开始时间,getdate())>5
说明:选择在每一组b值相同的数据中对应的a最大的记录的所有信息(类似这样的用法可以用于论坛每月排行榜,每月热销产品分析,按科目成绩排名,等等.)
select a,b,c from tablename ta where a=(select max(a) from tablename tb where tb.b=ta.b)
说明:包括所有在 TableA 中但不在 TableB和TableC 中的行并消除所有重复行而派生出一个结果表
(select a from tableA ) except (select a from tableB) except (select a from tableC)
说明:列出数据库里所有的表名
select name from sysobjects where type='U'
说明:选择从10到15的记录
select top 5 * from (select top 15 * from table order by id asc) table_别名 order by id desc
说明:一条sql 语句搞定数据库分页
select top 10 b.* from (select top 20 主键字段,排序字段 from 表名 order by 排序字段 desc) a,表名 b where b.主键字段 = a.主键字段 order by a.排序字段二数据库更新记录
sql= update tb1set field1=字段值 where 条件表达式
update tb1 set field1= value1, field2= value2……fieldn= valuen where条件表达式
三删除记录
sql= deletefrom tb1 where 条件表达式
deletefrom tb1" //(将数据表所有记录删除)
四添加记录