sql 根據列名查所屬表名

好比 有一個jueseID字段,想知道這個字段是哪一個表裏的。spa

第一步:code

select * from  syscolumns 
where name = 'jueseID' 

第二步:blog

select * from sysobjects
where id=677577452    //這個id就是上面查出來的id

這個name就是所在的表名class

相關文章
相關標籤/搜索