sybase查詢資料庫所有表的語句

2021-06-07 02:41:41 字數 385 閱讀 1290

select a.name,b.colid,b.name,c.name,b.usertype,b.length,

case when b.status=0 then 'not null'

when b.status=8 then 'null'

end status,

d.text

from sysobjects a,syscolumns b,systypes c,syscomments d

where a.id=b.id and b.usertype=c.usertype and a.type='u' --and a.name='t_user'

and b.cdefault*=d.id

order by a.name,b.colid

查詢資料庫所有表以及表的所有列

select from tab select a.b.comments from select t.table name,t.column name,t.data type from user tab cols t where table name entp show a left join sel...

Oracle資料庫 查詢所有表

1.查詢當前資料庫下的所有表 select from all tables where owner test 注 all tables查出來是查得所有使用者下的表,當然也包括你登入的用下的表,然後加乙個where你要查的那個使用者名稱就可以了。記得使用者名稱要大寫 2.查詢當前資料庫下某個例項資料庫...

Sybase資料庫表備份

1.insert into select語句 語句形式為 insert into table2 field1,field2,select value1,value2,from table1 要求目標表table2必須存在,由於目標表 table2 已經存在,所以我們除了插入源表 table1 的字段...