一、基础
1、说明:创建数据库CREATE DATABASE database-name
2、说明:删除数据库
DROP DATABASE database-name
3、说明:备份数据库
USE master
-- 创建 备份数据的 device
EXEC sp_addumpdevice 'disk', 'cc_jz', 'd:\cc_jz.dat'
-- 开始 备份
BACKUP DATABASE cc_jz TO cc_jz
4、说明:创建新表
create table tabname(col1 type1 [not null] [primary key],col2 type2 [not null],..)
--> 测试数据:[a]
if object_id('[a]') is not null drop table [a]
go
create table [a]([ID] int,[品名] varchar(6),[入库数量] int,[入库时间] datetime)
insert [a]
select 1,'矿泉水',100,'2013-01-02' union all
select 2,'方便面',60,'2013-01-03' union all
select 3,'方便面',50,'2013-01-03' union all
select 4,'矿泉水',80,'2013-01-04' union all
select 5,'方便面',50,'2013-01-05'
select * from a
/*
ID 品名 入库数量 入库时间
----------- ------ ----------- -----------------------
1 矿泉水 100 2013-01-02 00:00:00.000
2 方便面 60 2013-01-03 00:00:00.000
3 方便面 50 2013-01-03 00:00:00.000
4 矿泉水 80 2013-01-04 00:00:00.000
5 方便面 50 2013-01-05 00:00:00.000
(5 行受影响)
*/
5、说明:删除新表
drop table tabname
6、说明:增加一个列
Alter table tabname add column col type
Alter table a add col int
select * from a
/*
ID 品名 入库数量 入库时间 col
----------- ------ ----------- ----------------------- -----------
1 矿泉水 100 2013-01-02 00:00:00.000 NULL
2 方便面 60 2013-01-03 00:00:00.000 NULL
3 方便面 50 2013-01-03 00:00:00.0