SQL操作應(yīng)用——獲取某一個(gè)表的所有字段
提問(wèn)人:ylm發(fā)布時(shí)間:2020-09-30
獲取某一個(gè)表的所有字段
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ù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>