码迷,mamicode.com
首页 > 其他好文 > 详细

11月20日

时间:2014-11-23 15:55:06      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   数据   bs   ad   as   数据库   sql   nbsp   

sql2008一些简单的操作指令

create database class--创建数据库

use class--选择要操作的数据库 go /*create table student(code int not null, name varchar(10) ,birthday datetime) alter table student add sex int alter table student drop column sex drop table student*/表的创建删除和修改

 

/*insert into student values(1,‘张三‘,‘1990-02-02‘) insert into student values(2,‘李四‘,‘1993-04-09‘) insert into student(code,birthday)values(3,‘1994-11-06‘)

select*from student update student set code=‘100‘ update student set birthday=‘1999-09-23‘where name=‘李四‘ delete from student where name=‘张三‘*/表内容的修改

11月20日

标签:ar   sp   数据   bs   ad   as   数据库   sql   nbsp   

原文地址:http://www.cnblogs.com/577521a/p/4116596.html

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