简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

一些工作和学习中经常用到的sql语句

来源:易贤网   阅读:728 次  日期:2014-10-21 14:55:26

温馨提示:易贤网小编为您整理了“一些工作和学习中经常用到的sql语句”,方便广大网友查阅!

一些常用地sql语句:

新建表:

create table [表名]

(

[自动编号字段] int identity (1,1) primary key ,

[字段1] nvarchar(50) default '默认值' null ,

[字段2] ntext null ,

[字段3] datetime,

[字段4] money null ,

[字段5] int default 0,

[字段6] decimal (12,4) default 0,

[字段7] image null ,

)

新建表:

create table [表名]

(

[自动编号字段] int identity (1,1) primary key ,

[字段1] nvarchar(50) default '默认值' null ,

[字段2] ntext null ,

[字段3] datetime,

[字段4] money null ,

[字段5] int default 0,

[字段6] decimal (12,4) default 0,

[字段7] image null ,

)

删除表:

drop table [表名]

插入数据:

insert into [表名] (字段1,字段2) values (100,'51windows.net')

删除数据:

delete from [表名] where [字段名]>100

更新数据:

update [表名] set [字段1] = 200,[字段2] = '51windows.net' where [字段三] = 'haiwa'

新增字段:

alter table [表名] add [字段名] nvarchar (50) null

删除字段:

alter table [表名] drop column [字段名]

修改字段:

alter table [表名] alter column [字段名] nvarchar (50) null

重命名表:(access 重命名表,请参考文章:在access数据库中重命名表)

sp_rename '表名', '新表名', 'object'

新建约束:

alter table [表名] add constraint 约束名 check ([约束字段] <= '2000-1-1')

删除约束:

alter table [表名] drop constraint 约束名

新建默认值

alter table [表名] add constraint 默认值名 default '51windows.net' for [字段名]

删除默认值

alter table [表名] drop constraint 默认值名

更多信息请查看IT技术专栏

更多信息请查看数据库
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:数据库的安全为什么要侧重于网络系统
下一篇:如何检测oracle的可用性和表空间容量
易贤网手机网站地址:一些工作和学习中经常用到的sql语句
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!