2009年7月31日 星期五

欄位設為主鍵

alter table [tableName]
add primary key ([columnName])

修改欄位屬性

alter table [tableName]
alter column [columnName] 型態

ex:
alter table [tableName]
alter column [columnName] int not null

P.S. not null不一定需要

複製資料表(duplicate table)

select *
into [target_Table]
from [source_Table]