日期:2014-05-18  浏览次数:20492 次

求获取sql2005的所有用户表的SQL语句
获取SQL2000的表结构是这样的, 那么SQL2005呢, 有人会写吗?

SELECT  
  表名 = case when a.colorder=1 then d.name else ' ' end, 
  表说明 = case when a.colorder=1 then isnull(f.value, ' ') else ' ' end, 
  字段序号 = a.colorder, 
  字段名 = a.name, 
  标识 = case when COLUMNPROPERTY( a.id,a.name, 'IsIdentity ')=1 then '√ 'else ' ' end, 
  主键 = case when exists(SELECT 1 FROM sysobjects where xtype= 'PK ' and parent_obj=a.id and name in ( 
  SELECT name FROM sysindexes WHERE indid in( 
  SELECT indid FROM sysindexkeys WHERE id = a.id AND colid=a.colid))) then '√ ' else ' ' end, 
  类型 = b.name, 
  占用字节数 = a.length, 
  长度 = COLUMNPROPERTY(a.id,a.name, 'PRECISION '), 
  小数位数 = isnull(COLUMNPROPERTY(a.id,a.name, 'Scale '),0), 
  允许空 = case when a.isnullable=1 then '√ 'else ' ' end, 
  默认值 = isnull(e.text, ' '), 
  字段说明 = isnull(g.[value], ' ') 
FROM  
  syscolumns a 
left join  
  systypes b  
on  
  a.xusertype=b.xusertype 
inner join  
  sysobjects d  
on  
  a.id=d.id and d.xtype= 'U ' and d.name <> 'dtproperties ' 
left join  
  syscomments e  
on  
  a.cdefault=e.id 
left join  
  sysproperties g  
on  
  a.id=g.id and a.colid=g.smallid  
left join  
  sysproperties f  
on  
  d.id=f.id and f.smallid=0 
where  
  d.name= '要查询的表 ' --如果只查询指定表,加上此条件 
order by  
  a.id,a.colorder

------解决方案--------------------
SQL code

【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事务处理,防止对数据操作