sql第二天

--基本格式

select * from tblclass

--对于列进行限制

--格式一:取指定列

select cid,cname from TblClass

select cname from TblClass

--格式二:为列起别名as

select cid as 编号,cname 名称,描述=cdescription from TblClass

--对于行进行限制

--关键字top:表示取前n的数据

select top 2 * from TblClass

select top 2 percent * from TblClass

--关键字distinct:消除重复项

select cdescription from TblClass

select distinct cdescription from TblClass

--where子句

--查询编号大于5的班级

select * from TblClass

where cid>5--比较运算符:> < >= <= <> !=

--查询班级编号在5至8之间的班级信息

select * from TblClass

where cid>5 and cid<8--逻辑运算符:and(&&) or(||) not(!)

--查询班级编号在5至8之间并且描述信息的字符个数大于3的班级信息

select * from TblClass

where cid>5 and cid<8 and LEN(cDescription)>3

--查询班级编号在5至8之间或描述信息的字符个数大于3的班级信息

select * from TblClass

where (cid>5 and cid<8) or (LEN(cDescription)>3)--运算符优先级

--not的优先级最高,仅次于小括号

--取范围,表示在一个连续的范围内between ... and ...[5,8]

select * from TblClass

where cid between 5 and 8

--=============

select * from TblClass

where (cid between 5 and 8) and (LEN(cDescription)>3)

--in:取范围,表示一个不连续的范围

--查询编号为1,4,8的班级

select * from TblClass

where cid=1 or cid=4 or cid=8

--==========

select * from TblClass

where cid in(1,4,8)

--模糊查询:like _:任意一个字符 %:任意多个字符

--[]:显示一个连续区间 ^:放在[]中表示非

select * from TblClass

where cDescription like ‘%赵剑雨%‘

--查询在描述中以‘黑‘开头并且是2个字符的信息

select * from TblClass

where cDescription like ‘黑_‘

--查询描述中包含‘%‘的班级,转义:使用[]括起来

select * from TblClass

where cDescription like ‘%[%]%‘

--[4-7]表示4,5,6,7

--[4,7]表示4,7

--[47]表示4,7

--查询描述中包含4-7的信息

select * from TblClass

where cDescription like ‘%[4-7]‘

--查询描述中不包含4-7的信息

select * from TblClass

where cDescription like ‘%[^4-7]‘

--空值判断is [not] null

select * from TblClass

where cDescription is not null

--函数isnull:判断值是否为空,如果为空,不显示null而给一个默认值

select cid,cName,ISNULL(cDescription,‘暂未开班‘) from TblClass

--============================================

--order by 子句排序子句 asc升序 desc降序

select * from TblClass

--order by cid[ asc]--按cid升序排列

--order by cid desc

order by cid desc,cName asc--可以按照多列排序

--=========================================

--分组子句group by ... having ...

--聚合函数

--聚合:把多行合并成一行

--use ItCastCn

select * from tblscore

--找出英语成绩的最高分

select MAX(tenglish) from tblscore

--找出数学成绩的最低分

select MIN(tmath) from tblscore

--查询英语的平均成绩

select AVG(tenglish) from tblscore

--求数学成绩的总和

select SUM(tmath) from tblscore

--求参加考试的人数

select count(*) from tblscore

select COUNT(*) from tblstudent

select * from tblscore

--分组:统计各班人数

--出现分组中的列,可以出现在查询结果中,其它的列不可以与聚合函数一起出现在结果中

select tsclassid,COUNT(*) as 人数 from tblstudent

group by tsclassid

--做选择having:在分组后,对结果集进行筛选

--查找出班级人数大于5的班级信息

select tsclassid,COUNT(*) as 人数 from tblstudent

group by tsclassid having COUNT(*)>5

--综合语句练习

select distinct top 1 tsclassid,COUNT(*) AS 人数,avg(tsage) as 平均年龄

from tblstudent

where tsGender=‘男‘

group by tsclassid having tsclassid>3

order by 平均年龄 desc

--作业:学生表操作

select * from tblstudent

--查询所有女生的信息

--查询班级为3的男生信息

--查询姓‘张‘的男学生

--找出各个城市的人数及城市名称

--找出各班中最多人的城市名称

时间: 2024-12-23 03:12:45

sql第二天的相关文章

2015-10-20 SQL 第二次课 (约束、日期、isnull、case、exists、cast\convert、索引、视图、存储过程、触发器、备份与还原)

1 . Primary Key 约束 SQLServer 中有五种约束, Primary Key 约束. Foreign Key 约束. Unique 约束. Default 约束和 Check 约束. 在表中常有一列或多列的组合,其值能唯一标识表中的每一行. 这样的一列或多列成为表的主键(PrimaryKey).一个表只能有一个主键,而且主键约束中的列不能为空值.只有主键列才能被作为其他表的外键所创建. 创建主键约束可以右键单击表,选择设计 . 选中要创建主键的列,然后单击上面的小钥匙. 也可

SQL第二讲

四.添加.修改.删除 1.Insert                  往表中插入新的记录 2.Update                修改表中已有记录的修改 3.Delete                 删除表中已有记录的删除 五.分页语句 分页是根据记录的序号栏分的,[row_number()]函数获取记录序号. select * from (select *, row_number() over(order by Stuid) as row StuInfo) AA where r

SQL第二节课

SQL练习题 一.            设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示.用SQL语句创建四个表并完成相关题目. 表1-1数据库的表结构  表(一)Student (学生表) 属性名 数据类型 可否为空 含 义 Sno Char(3) 否 学号(主码) Sname Char(8) 否 学生姓名 Ssex Ch

Oracle PL/SQL随堂笔记总结

1.pl/sql编程 1.理解oracle的pl/sql的概念    2.掌握pl/sql编程技术(过程.函数.触发器)    pl/sql是标准sql语句的扩展    简介        1.过程.函数.触发器都是由pl/sql编写        2.过程.函数.触发器是在oracle中        3.pl/sql是非常强大的过程语言        4.过程.函数等可以在java程序被调用    学习必要性:        1.提高应用程序的性能        2.模块化的设计思想    

oracle第二天

集合运算 SQL> host cls SQL> /*SQL> 查询部门号是10和20的员工信息SQL> 1. select * from emp where deptno in (10,20);SQL> 2. select * from emp where deptno=10 or deptno=20;SQL> 3. 集合运算SQL> select * from emp where deptno=10SQL> 加上SQL> select * from

MySQL加载并执行SQL脚本文件

第一种方法: 命令行下(未连接数据库) ,输入 mysql -h localhost -u root -p123456 < C:\db.sql 第二种方法: 命令行下(已连接数据库,此时的提示符为 mysql>: ), 输入 source C:\db.sql 来自为知笔记(Wiz)

SQL优化记录

分公司业务部门同事一直抱怨登录系统.查询数据等操作非常缓慢,问题反馈到开发同事,再到我这里的时候已经相当严重了,而且在日常对数据库进行监控的时候,抓取出来的问题SQL与开发给我的SQL是一致的,该SQL就是频繁导致数据库服务器CPU使用率飙升到90%以上的元凶,所以最近对该SQL进行了优化. SQL文本如下:(最原始的SQL里有多重distinct,或者类似where 1=1这样的内容,为了节省篇幅,下面是精简后的SQL) select count(*) from (select distinc

mybatis 之动态 SQL

1.动态 SQL 简介: 动态 SQL 是 MyBatis 强大特性之一.极大的简化我们拼装 SQL 的操作. 动态 SQL 元素和使用 JSTL 或者其他类似基于 XML 的文本处理器相似. MyBatis 采用功能强大的基于 OGNL 的表达式来简化操作. - if - choose(when,otherwise) - trim(where,set) - foreach 2.if:判断(要求是携带了哪个字段查询条件,就带上这个字段的值): a.创建一个 EmployeeMapperDynam

【SAS ADVANCE】Performing Queries Using PROC SQL

SQL: Structured Query Language 一.Objectives in this chapter: invoke the SQL procedure select columns define new columns specify the table(s) to read specify subsetting criteria order rows by values of one or more columns group results by values of on