1、datatt.mdf,size=4mb,maxsize=50mb,filegrowth=15%log on(name=tt1,datatt1.ldfsize=5mb,maxsize=79mb,-这是对数据库的修改alter database ttmodify file(maxsize=89mb-增加日志文件add log file(name=oo,dataoo.ldf-查看数据库sp_helpdb tt5.重要的数据类型Int float char(size datetime varchar(size 6.在数据库中添加表use ttgoif exists(select*from sysobj
2、ects where name=t_li drop table t_licreate table t_li(a char(4not null,b int not null,c datetimeinsert into t_li values(yy,78,2012-5-12insert into t_li (a,bvalues(ttf,89select*from t_li-新建一个表,往表里添加t_li的数据create table t_ti1(b int not nullinsert into t_ti1select a,b from t_li-这种方法不用重建select a,binto t_
3、li2from t_liselect*from t_li26.使用union关键字插入多行数据-利用union一次插入多行数据insert into t_li (a,b,cselectaa,55,2012-8-12 unioncc,54,2032-5-127.对数据表进行操作-对表的修改alter table t_lialter column a char(8-添加字段add d char(9-删除字段drop column d-表的查询8.对字段添加约束-添加主键约束应该注意是主键约束字段的值不能是重复的alter table t_liadd constraint pk_a primary
4、key(a-添加外键约束add constraint fr_b foreign key(breferences t_li4(b-添加唯一约束add constraint t_li_uq unique(a-添加默认约束add constraint t_li_df default(20for b-添加check约束add constraint t_li_ck check(b between 0 and 50 -删除约束drop constraint t_li_ck9.对于表的查询(单表查询select*from Customersselect c_ID,c_Name,c_TrueName,c_Pa
5、ssword from Customers-(查询WebShop数据库中会员信息表Customers中会员的编号(c_ID、-用户名(c_Name、真实姓名(c_TrueName、年龄(c_Age和密码(c_Password。select c_ID,c_Name, c_Truename,year(getdate(-year(c_Birthc_Age,c_Passwordfrom Customersselect会员的编号=c_ID,用户名=c_Name,c_TrueName as真实名字,c_Password 名字where c_Type=VIP-6将VIP客户的编号(c_id、姓名(c_nam
6、e、出生日期(c_birth、籍贯(c_address、-联系电话(c_phone和地址(c_email显示出来并以汉字标题显示列名。select编号=c_id,姓名=c_name, c_birth as出生年月, c_address 籍贯,c_phone as联系电话, c_email 地址from Customers where c_Type=-(将湖南的VIP客户记录显示出来。select*from Customers where c_Address=湖南株洲市AND C_Type=-(将的客户记录显示出来。where c_Email like%-(将前%的客户记录显示出来。select
7、 top 10 percent*from Customers-(将姓刘的客户记录显示出来。where c_TrueName like刘%-(将客户按年龄进行降序(由大到小排序。select year(getdate(-year(c_Birthasorder by year(getdate(-year(c_Birthdesc-(将客户按类型升序排序,如果类型相同按年龄的降序进行排序。order by c_Type,year(getdate(-year(c_birthdesc10.对表中数据的操作-对表中数据的操作-修改表中的数据-把学号为的同学的名字改为xiaoxinupdate student
8、set name=xiaoxinwhere sno=01-删除表中数据delete from student如果要删除整个表中的数据,还可以使用Truncate table语句它相当于与一个没有where子句的delete语句。与delete相比,他在执行时使用的系统资源和事务日志更少,执行速度更快例如要将图书表中的所有数据删除。Truncate table booksTruncate table只能删除表中的数据行,不会删除表结构及各种约束。Truncate table 不能删除具有引用关系的数据表(引用关系是两个表的主关键字和外关键字的数据应对应一致,这属于_引用_完整性11.sql语句的
9、全称是structure query language12.要求一个人的年龄 year(getdate(-year(birth13.聚合函数-计算所有会员的积分之和。select sum(upointfrom customers-计算所有会员的平均积分。select avg(upoint-计算所有会员的最高积分。select max(upoint-计算所有会员的最低积分。select min(upoint-统计会员表中积分大于的会员个数。select count(*where upoint30014.分组select sex,count(sexas个数group by sexselect ci
10、ty,sex,count(sexgroup by city,sex having count(sex2having与where的用法一样,但是having与group by 一块用15.内连接-查找某位同学的学号,姓名以及他的得分select student.sid,sname,scorefrom student inner join scoreon student.sid=score.sidselect sc.sid,s.sname,sc.scorefrom student s inner join score scon s.sid=sc.sidselect sc.score,s.sname
11、,sc.sidfrom score sc inner join student s-三个表的内连接select sc.score,s.sname,amejoin course con c.cid=sc.cid-内连接需要进行条件筛选,直接在后面加where既可select sc.score,s.sname,s.sgender,sc.cidwhere s.sgender=男-笛卡尔乘积(交叉连接select s.sname,sc.scorefrom student s,score sc-查询不满足条件的内连接(不等值连接结果集select sc.score,s.sname,sc.cidfrom score sc inner join student s on s.sidsc.sid-另一种内连接查询方法-两个表的内连接(等值连接select sc.score,s.sname,sc.cidfrom score sc,student swhere s.sid=sc.sid-三个表的内连接(等值连接from score sc,student s,course cwhere s.sid=sc.sid and sc.cid=c.cidsele
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1