SQL資料庫表結構的修改(sql2005)

來源:互聯網
上載者:User

標籤:資料   ar   資料庫   sql   type   app   table   har   

一 、ALTER TABLE命令

ALTER TABLE 語句用於在已有的表中添加、修改或刪除列。

二、添加列

文法 :ALTER TABLE table_name ADD column_name datatype
eg:  ALTER TABLE Persons ADD P_Names VACHAR(50) NOT NULL

三、修改列

3.1修改欄位varchar(50)為datetime,允許空
eg:  ALTER TABLE Persons ALTER COLUMN  P_Names date

3.2 修改欄位名

文法:EXEC sp_rename ‘table_name.column_name1‘, ‘table_name.column_name2‘, ‘column‘

eg:  EXEC sp_rename ‘[P_Names].P_MemID‘, ‘P_myMemID‘, ‘column‘

四、刪除欄位

文法 :ALTER TABLE table_name DROP COLUMN column_name
eg:  ALTER TABLE Persons DROP  COLUMN  P_Names  

五、其他動作

5.1建立表:
create table [表名]
(
[自動編號欄位] int IDENTITY (1,1) PRIMARY KEY ,
[欄位1] nVarChar(50) default ‘預設值‘ null ,
[欄位2] ntext null ,
[欄位3] datetime,
[欄位4] money null ,
[欄位5] int default 0,
[欄位6] Decimal (12,4) default 0,
[欄位7] image null ,
)

5.2刪除表:
Drop table [表名]

 (注意區分  truncate 和 delete的區別)

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.