常用的也不只這些:
1、說明:建立資料庫
CREATE DATABASE database-name
drop database dbname
3、說明:備份sql server
--- 建立 備份資料的 device
USE master
EXEC sp_addumpdevice "disk", "testBack", "c:\mssql7backup\MyNwind_1.dat"
--- 開始 備份
BACKUP DATABASE pubs TO testBack
4、說明:建立新表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
根據已有的表建立新表:
A:create table tab_new like tab_old (使用舊錶建立新表)
B:create table tab_new as select col1,col2... from tab_old definition only
drop table tabname
6、說明:增加一個列
Alter table tabname add column col type
7、說明:新增主鍵: Alter table tabname add primary key(col)
8、說明:建立索引:create [unique] index idxname on tabname(col....)
9、說明:建立檢視:create view viewname as select statement
常用的也不只這些:
1、說明:建立資料庫
CREATE DATABASE database-name
drop database dbname
3、說明:備份sql server
--- 建立 備份資料的 device
USE master
EXEC sp_addumpdevice "disk", "testBack", "c:\mssql7backup\MyNwind_1.dat"
--- 開始 備份
BACKUP DATABASE pubs TO testBack
4、說明:建立新表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
根據已有的表建立新表:
A:create table tab_new like tab_old (使用舊錶建立新表)
B:create table tab_new as select col1,col2... from tab_old definition only
drop table tabname
6、說明:增加一個列
Alter table tabname add column col type
7、說明:新增主鍵: Alter table tabname add primary key(col)
8、說明:建立索引:create [unique] index idxname on tabname(col....)
9、說明:建立檢視:create view viewname as select statement