当前位置: > 数据库 > SQL Server 2005 >

用SQL Server 命令创建数据库和数据表

时间:2015-03-24 12:22来源:linux.it.net.cn 作者:IT

创建数据库

CREATE DATABASE library
ON
( NAME = 'library_dat', --这个就是逻辑文件名
FILENAME = 'c:\data\library_dat.mdf', --物理文件名
SIZE = 1,
MAXSIZE = 10,
FILEGROWTH = 20% )
LOG ON
( NAME = 'library_log',
FILENAME = 'c:\data\library_log.ldf',
SIZE = 2MB,
MAXSIZE = 20MB,
FILEGROWTH = 1MB )
GO

?

创建数据表

create table student

id int not NULL primary key,
name varchar(10) not null

sql语句创建数据表 让id自动增量

create table test
(
ID int identity(1,1) not null,/* 编号 */
}

?

//identity [ai'dentiti] n. 同一(性); 一致 身分; 本身; 本体; 个性; 特性

 



(责任编辑:IT)
------分隔线----------------------------