SqlServer 使用的常用命令

來源:互聯網
上載者:User

標籤:ar   使用   sp   資料   bs   as   資料庫   sql   nbsp   


建立資料庫

create database database_name

例如:create database test

 

建立表時先執行命令

use test

 

建立表

create table 表名(列名1 資料類型,列名2 資料類型 ,...)

例如:create table book(name char(20),writer varchar(20))

 

建立表時可以設定某些欄位為自增型,但是欄位屬性必須是int型

create table 表名(列名 int identity(a,b))a 代表自增從 a 開始,

每次增加 b 個值(注意 a 和 b 必須都為int型,而且不能設定欄位長度)

例如:create table book (book_id int identity(1,1))

 

表中插入資料

insert into 表名 values (欄位一值,欄位二值,...)

例如: insert into book values(‘狼圖騰‘,‘薑戎‘)

注意varchar型和char型的欄位值插入用英文單引號

 

修改表中列的資料類型

alter table 表名 alter column 列名 新的資料類型

例如: alter table book alter column varchar(20)

 

刪除表中的所有欄位值

delete 表名

例如: delete book

 

刪除表

drop 表名

例如 :drop book

 

查看錶的詳細資料

sp_help 表名

例如: sp_help book

 

將表1 中的所有資料複製到表2 中:

insert into table1 select * from table2

SqlServer 使用的常用命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.