在sql sever中用sql命令檢視表結構:
可以使用內建的儲存過程sp_mshelpcolumns。
如查詢表b_rwzl的結構:
sp_mshelpcolumns 'dbo.b_rwzl'
***********************************==
(1)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
(2)sql2000系統表的應用
--1:獲取當前資料庫中的所有使用者表
select name from sysobjects where xtype='u' and status>=0
--2:獲取某乙個表的所有字段
select name from syscolumns where id=object_id('表名')
--3:檢視與某乙個表相關的檢視、儲存過程、函式
select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%表名%'
--4:檢視當前資料庫中所有儲存過程
select name as 儲存過程名稱 from sysobjects where xtype='p'
--5:查詢使用者建立的所有資料庫
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
--6:查詢某乙個表的字段和資料型別
select column_name,data_type from information_schema.columns
where table_name = '表名'
--7:取得表字段的描述
select name,
(select value from sysproperties where id = syscolumns.id and smallid=syscolumns.colid) as 描述
from syscolumns where id=object_id('表名')
在ACCESS中用SQL匯入匯出資料
hkey local machine software microsofe jet 4.0 isam formats 下有多種格式,在access中可以使用這些格式匯入匯出 select into filname from text database e developer filname.txt ...
正解SQLSEVER 2005 sql排序
今天在論壇上看到乙個問題,如下 解決這個問題,insus.net寫了乙個函式,可以方便以後的擴充套件,如果數值出現tb或是或更高時,可以只改這個函式即可。setansi nulls ongo setquoted identifier ongo alter function dbo udf order...
mysql中用sql匯出excel
mysql中用sql匯出excel select 要查的字段 from 表名 into outfile 匯出檔案放的位置 select from t1 into outfile d excel.xls 雙斜槓是帶轉義識別目錄。當然也可以加入篩選條件,將特定的資料匯出成 excel,比如 select...