sql 建立錶帶並備註字段資訊

2021-06-22 09:15:56 字數 3842 閱讀 5984



-- t_workinfo_template 工作資訊模板

if object_id('t_workinfo_template')isnotnulldroptablet_workinfo_template

go

createtablet_workinfo_template

(

workinfo_template_idchar(36)primarykey,-- 主鍵

componentreferencevarchar(400),-- 相關裝置

itemnamevarchar(200),--

itemcontentvarchar(2000),-- 保養內容

periodnumeric(9,2),-- 預檢週期

periodicalvarchar(10),-- 週期的單位,資料取t_periodical

remarkvarchar(4000),-- 備註

classvarchar(20)-- 類別

)on[primary]

go

execsp_addextendedproperty n'ms_description', n'主鍵', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'workinfo_template_id'

execsp_addextendedproperty n'ms_description', n'相關裝置', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'componentreference'

execsp_addextendedproperty n'ms_description', n'保養專案', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'itemname'

execsp_addextendedproperty n'ms_description', n'保養內容', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'itemcontent'

execsp_addextendedproperty n'ms_description', n'預檢週期', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'period'

execsp_addextendedproperty n'ms_description', n'週期的單位,資料取t_periodical', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'periodical'

execsp_addextendedproperty n'ms_description', n'備註', n'user', n'dbo', n'table', n't_workinfo_template', n'column', n'remark'

go

摘自:

sql server 檢視字段備註等資訊

select d.name as 英文表名,isnull h.value,n as 中文表名,a.colorder as 字段序號,a.name as 英文列名,isnull g.value,n as 中文列名,case when columnproperty a.id,a.name,isident...

Oracle 查詢表資訊(字段 備註)

獲取表字段 select from user tab columns where table name 使用者表 order by column name 獲取表注釋 select from user tab comments where table name 使用者表 order by table...

Oracle 查詢表資訊(字段 備註)

sql view plain copy 獲取表字段 select from user tab columns where table name 使用者表 order by column name 獲取表注釋 select from user tab comments where table name...