当前位置: 代码迷 >> SQL >> SQLServer学习札记(1)
  详细解决方案

SQLServer学习札记(1)

热度:77   发布时间:2016-05-05 14:26:53.0
SQLServer学习笔记(1)
--创建数据库create database sunjob--删除数据库drop database sunjob--创建表use sunjob  --选中数据库create table Student(  ID int identity(1,1) not null, --identity设置标识列  sName char(20) null,  sSex  bit null,  sAddress varchar(50),) --删除表drop  table master ..Studentdrop table Student --增加一列 alter table 表名 add 字段 数据类型 是否为空 alter table Student add sGrade int null alter table Student add sAge int null--删除一列:  alert table 表名 drop 字段alter table Student drop  sAge ;--查看表结构select * from Student--插入记录/*有标识列的时候,不能手动添加  保持数据完整性,如果允许为空的时候,可以省略不写,但要同时  有检查约束时候要按要求插入内容 有默认值的时候 可以使用default插入数据*/insert into Student(sName,sAddress,sGrade,sAge) values('猪八戒',default,2,12) --删除表内容 而不是删除表delete from 表  delete from Student--插入多行内容--添加记录的表要存在,可以重复执行   通过查询存在的表的字段执行插入指定的表中字段数据insert into score (names,grade)select sName,sGradefrom Student -- insert into A表 (字段Aa,字段Ab) select 字段Ba,字段Bb from B表 create table score (id int identity(1,2) not null, names char(20), grade int, )select * from score  --第二中方法--表可以不存在自动创建,不可以重复执行select sName,sGrade,identity(int,1,1) as lessonidinto lessonfrom Student select *from lessondrop table lessondelete from lesson--第三种方法--列值和列名要对应--into 有或没有是没影响,要求插入不同的内容才可,重复的内容会覆盖insert into lesson (sGrade,sName)select 12,'孙悟空' UNIONselect 11,'孙悟空' UNIONselect 12,'孙悟空' UNIONselect 12,'孙悟空' --更新内容update lesson set sName='猪无能' where lessonid=18update lesson set sName='猴子' where sName like '孙%'update lesson set sName='猪' where lessonid>=19update lesson set sName='好人一个'--删除表记录 --delete 是一行一行的删除--truncate 是全部一次性删除,而且是不能约束条件delete from lesson where lessonid=19truncate table lesson--条件查询select * from score where id=3   ………………………………………………………………………………………………………--变量/*  局部变量(短暂存储中间数据)       定义方式:declare  @名称数据类型       赋值(初始化)              set @              select   多个赋值*/--定义declare @name varchar(10)declare @age intdeclare @seat int--赋值set @name='飞龙'   --使用set 不能同时给多个变量赋值print @name   --不能多个输出select @name=stuName,@age=stuAge,@seat=stuSeat from stuInfo where stuNo='s001'select @name='龙岗',@age=1,@seat=2--输出print '*'print '姓名是:[email protected]print '年龄是:'+convert(varchar(10),@age)   --convert 的使用print '座位号:'+convert(varchar(10),@seat) --案例找出小花的左右座位的同学declare @seat intselect @seat =stuSeat from stuInfo where stuName='小花'print @seat   --消息窗口显示select *from stuInfo where stuSeat in(@seat+1,@seat-1)  --结果select * from stuInfo--全局变量(sql server 系统自动赋值) print @@version   --你的安装的版本 print @@trancount   --事务统计 print @@servername --服务器名称 print @@rowcount   --数据操作所影响的行数,最后一条语句影响 print @@error     --打印错误号无错得到 有错是一个大于零的数--逻辑控制语句--if- else/*统计并显示本班笔试平均分,如果平均分在以上,显示“成绩优秀“,并显示前三名学员的考试信息;如果在以下,显示“本班成绩较差“,并显示后三名学员的考试信息。*/ declare @avg  floatselect @avg=avg(writtenExam)from scroeprint @avgif(@avg>70)  begin  print'成绩优秀'  select top 3 * from scroe order by writtenExam desc  endelse  begin  print'成绩较差'  select top 3 * from scroe order by writtenExam  end --while()循环/*问题:?uc2本?次?考?试?成?绩¨较?差?,?假?定¨要?提á分?,?确·保?每?人?笔?试?都?通¨过?。?提分规则很简单,先每人都加分,看是否都通过,如果没有全部通过,每人再加分,再看是否都通过,如此反复提分,直到所有人都通过为止。*/select count(*) from scroe where writtenExam<60while(1=1)              begin              declare @count int              select @count=count(*) from scroe where writtenExam<60              if(@count>0)               update scroe set writtenExam=writtenExam+2        else        breakend--修正update scroe set writtenExam=100 where writtenExam>100select * from scroe --方法二while(1=1)  --注意下== 要用逻辑表达式begin              if not exists(select * from scroe where writtenExam>60)               update scroe set writtenExam=writtenExam+2        else        breakend--修正update scroe set writtenExam=100 where writtenExam>100  --case --end declare @labexam intselect @labexam=labExam  from scroe  where stuNo='s003'print @labexamdeclare @str varchar(20)  --定义一个变量set @str=case   when @labexam<60 then '加加油'   when @labexam between 60 and 70 then '一般啦'   when @labexam between 70 and 90 then '还可以啦'   else '还行,'   endprint @str --案例-- 
  相关解决方案