1.建立資料庫表
--使用哪個資料庫,如果不寫這篇是預設的資料庫,也可以用滑鼠選取目前資料庫
use testDB
--建立表格
--id表示欄位名稱
--int 資料型別
--identity(1,1)初始值為1 每次自成長1 id int primary key not null identity(1,1), --unique 唯一
2.刪除表
Drop table 表名
3.修改表格結構
--增加欄位
Alter table 表名
Add 列名類型
--刪除欄
Alter table 表名
drop cloumn 欄位型
Alter table 表名
Alter column 列名type