欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL Server 数据库实用SQL语句

程序员文章站 2023-12-12 21:49:58
--查看指定表的外键约束 select * from sysobjects where parent_obj in( select id from sysobjects w...
--查看指定表的外键约束
select * from sysobjects where parent_obj in(
select id from sysobjects where name='表名')
and xtype='pk'
--查看所有表
select * from sysobjects where xtype='pk'
--删除列中含数字的
delete news where patindex('%[0-9]%',title)>0
--删除删去 字段 title值重复的行,且只保留 id 较小的这个
delete news where exists(select 1 from news t where t.title=news.title and t.id<news.id)
--查看数据库信息
select * from sys.databases where name='master'
1.按姓氏笔画排序:
select * from tablename order by customername collate chinese_prc_stroke_ci_as
2.分页sql语句
select * from(select (row_number() over (order by tab.id desc)) as rownum,tab.* from 表名 as tab) as t where rownum between 起始位置 and 结束位置
3.获取当前数据库中的所有用户表
select * from sysobjects where xtype='u' and category=0
4.获取某一个表的所有字段
select name from syscolumns where id=object_id('表名')
5.查看与某一个表相关的视图、存储过程、函数
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
6.查看当前数据库中所有存储过程
select name as 存储过程名称 from sysobjects where xtype='p'
7.查询用户创建的所有数据库
select * from master..sysdatabases d where sid not in(select sid from master..syslogins where name='sa')
或者
select dbid, name as db_name from master..sysdatabases where sid <> 0x01
8.查询某一个表的字段和数据类型
select column_name,data_type from information_schema.columns
where table_name = '表名'
9.使用事务
在使用一些对数据库表的临时的sql语句操作时,可以采用sql server事务处理,防止对数据操作后发现误操作问题
开始事务
begin tran
insert into tablename values(…)
sql语句操作不正常,则回滚事务。
回滚事务
rollback tran
sql语句操作正常,则提交事务,数据提交至数据库。
提交事务
commit tran
10. 按全文匹配方式查询
字段名 like n'%[^a-za-z0-9]china[^a-za-z0-9]%'
or 字段名 like n'%[^a-za-z0-9]china'
or 字段名 like n'china[^a-za-z0-9]%'
or 字段名 like n'china
11.计算执行sql语句查询时间
declare @d datetime
set @d=getdate()
select * from sys_columnproperties select [语句执行花费时间(毫秒)]=datediff(ms,@d,getdate())
12、说明:几个高级查询运算词
a: union 运算符
union 运算符通过组合其他两个结果表(例如 table1 和 table2)并消去表中任何重复行而派生出一个结果表。当 all 随 union 一起使用时(即 union all),不消除重复行。两种情况下,派生表的每一行不是来自 table1 就是来自 table2。
b: except 运算符
except 运算符通过包括所有在 table1 中但不在 table2 中的行并消除所有重复行而派生出一个结果表。当 all 随 except 一起使用时 (except all),不消除重复行。
c: intersect 运算符
intersect 运算符通过只包括 table1 和 table2 中都有的行并消除所有重复行而派生出一个结果表。当 all 随 intersect 一起使用时 (intersect all),不消除重复行。

上一篇:

下一篇: