產生SQL(通過Sql Server企業管理器)

來源:互聯網
上載者:User
查詢:
當要查詢表比較多時,手動寫SQL就比較煩了,有一個辦法就是通過,右鍵表+開啟+查詢來做,牙當方面,還有,多錶鏈接,Left join等,
動態修改表結果,先打資料表設計工具,做修改,然後,當擊工具類的指令碼表徵圖,這裡企業管理器自己會幫你產生需求的代碼,

給大家一個得到表資訊的SQL

SELECT 
欄位名=a.name,
類型=b.name,
佔用位元組數=a.length,
欄位說明=isnull(g.[value],'')
FROM syscolumns a left join systypes b on a.xtype=b.xusertype
inner join sysobjects d on a.id=d.id
and d.xtype='U' and
 d.name='Info'
 left join sysproperties g on a.id=g.id and a.colid=g.smallid 
 order by a.colorder

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.