码迷,mamicode.com
首页 > 数据库 > 详细

SQL数据库语句

时间:2015-06-26 00:23:45      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

 

on xxx --主文件

name=‘xxxx’,

fliename=‘里面写文件放的路径\xxxx.mdf‘,

size=xxMB,

filegrowth=xxMB,

maxsize=xxMB

)

log on

(

name=‘xxxx_log‘,

filename=‘里面存放的路径\xxxx_log.idf‘,

size=xMB,

filegrowth=xx%

)

use MySchool

create table Class

(

sid int identity(1,1)primary key,

sname narchar(16) not null,

sDesciootion nvarchar(512),

)

--设置可以插入自动增长的主键 一般我们不去做这个

set IDENTITY_INSERT Class off

--向已知的表中添加新列

alter table Class add sCount int not null

--向表中删除列

alter table Class drop column sCount

--移除表中的数据不会还原自动增加的列 不会删除表

delete from Class where cid=3

--把表直接删除

drop table Class

--删除 会还原自动曾长的列

truncate table Class

 

SQL数据库语句

标签:

原文地址:http://www.cnblogs.com/hsha/p/4601169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!