標識新聞的唯一標識 id int (自增長) (主鍵)
新聞標題
title varchar(100) 長度自定100差不多是50個中文 可以根據需要來設定
新聞作者 author varchar(20) 長度根據使用者表中的使用者名稱列表的長度來定
發布時間 releasetime datetime
修改時間 updatetime datetime
新聞內容 content text 能存放最大值為2147483647個字元的變長文字(如果不需要那麼長的內容 可以考慮使用varchar(max)可儲存最大值為8000個字元的可變長字串)
新聞關鍵字 keywords varchar(200) 用逗號等符號分隔關鍵字(新聞,發布,系統)
新聞類別 categoryid int (要使用類別的話要再建立乙個類別的表)
根據乙個表的字段,更新另外乙個表的字段
update table a set latesttm u.tm,latestdata u.data from select from table b inner join select max tm newesttm from table b group by stcd v on drp.tm v...
怎樣獲取乙個表中所有欄位的資訊
先建立乙個檢視 create view fielddesc asselect o.name as table name,c.name as field name,t.name as type,c.length as length,c.isnullable as isnullable,convert ...
怎樣獲取乙個表中所有欄位的資訊
先建立乙個檢視 create view fielddesc asselect o.name as table name,c.name as field name,t.name as type,c.length as length,c.isnullable as isnullable,convert ...