逆光飛行的玉珮

导航

随笔分类 -  SQL Server

[SQL Server] sysobjects的介紹
摘要:sysobjects表 數據庫中所創建的每個對象(約束、默認值、日誌、規則、存儲過程等)都各以一行資訊呈現於表中。 而臨時對象只有在tempdb內,才在該表中各佔一行。 sysobjects 表結構: 列名 數據類型 描述 name sysname 對象名,常用列 id int 對象標識號 xtyp 阅读全文

posted @ 2019-02-26 12:08 逆光飛行的玉珮 阅读(219) 评论(0) 推荐(0)

[Ms SQL] 基本創建、修改與刪除
摘要:##創建 table student, 內涵 id ,name ,tel三種columne,設定id為primary key create table student ( id int primary key, name char(20), tel char(20), ) ##創建 table course,內涵 id ,name ,score三種columne,其中將id與student的... 阅读全文

posted @ 2019-02-12 17:07 逆光飛行的玉珮 阅读(149) 评论(0) 推荐(0)