日期:2014-05-18 浏览次数:20536 次
【SQL SERVER 数据库实用SQL语句】 --查看指定表的外键约束 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事务处理,防止对数据操作