SQL操作應(yīng)用——獲取某一個表的所有字段
提問人:ylm發(fā)布時間:2020-09-30
獲取某一個表的所有字段
select name from syscolumns where id=object_id('表名')
select name from syscolumns where id in (select id from sysobjects where type = 'u' and name = '表名')
兩種方式的效果相同
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>