数据库知识点

基本概念
(1)any/all,构成 where 子句的条件判断,any:表示或(or)的概念,all:则表示与(and)的概念,这两个关键字的出现是为了语句的简化;
(2)先分组再做聚合,逻辑上也应当如此,聚合(取最值)之后便无分组的必要;
select region, sum(population), sum(area) from bbc group by region;
(3)group by having,having 对分组后的数据进行筛选,这是 where 所做不到的;
1. 不使用 min,找出表 ppp 中 num(列)最小的数
select num from ppp where num <= all(select num from ppp);
不可以使用 min 函数,但可以实用 order by 和 limit 相组合呀;
select * from ppp order by num desc limit 1;
举一反三
自然,不使用 max,找出表 ppp 中 num 最大的数:
select num from ppp where num >= all(select num from ppp);select num from ppp order by num limit 1;
2. 选择表 ppp 中的重复记录
select * from ppp
   where num in (select num from ppp group by num having count(num) > 1);
注意,如下的语句只返回单独的一条记录
select * from ppp group by num having count(num) > 1;
举一反三
查询表中出现 四 次的记录,group by having
select * from ppp
    where num in (select num from ppp group by num having count(num) = 4);
3. 用一条SQL语句查询出每门课都大于80分的学生姓名
name kecheng fenshu
张三 语文 81
张三 数学 75
李四 语文 76
李四 数学 90
王五 语文 81
王五 数学 100
王五 英语 90
select distinct name from stu where name not in (select distinct name from stu where fenshu <= 80);
4. 影分身,一表当做两表用
表形式如下:
Year Salary
2000 1000
2001 2000
2002 3000
2003 4000
想得到如下形式的查询结果
Year Salary
2000 1000
2001 3000
2002 6000
2003 10000
sql语句怎么写?
select b.year, sum(a.salary) from hell0 a, hello b where a.year <= b.year group by b.y

2007年07月27日 星期五 上午 08:42
1.一道SQL语句面试题,关于group by
表内容:
2005-05-09 胜
2005-05-09 胜
2005-05-09 负
2005-05-09 负
2005-05-10 胜
2005-05-10 负
2005-05-10 负

如果要生成下列结果, 该如何写sql语句?

            胜 负
2005-05-09 2 2
2005-05-10 1 2
------------------------------------------
create table #tmp(rq varchar(10),shengfu nchar(1))

insert into #tmp values(‘2005-05-09‘,‘胜‘)
insert into #tmp values(‘2005-05-09‘,‘胜‘)
insert into #tmp values(‘2005-05-09‘,‘负‘)
insert into #tmp values(‘2005-05-09‘,‘负‘)
insert into #tmp values(‘2005-05-10‘,‘胜‘)
insert into #tmp values(‘2005-05-10‘,‘负‘)
insert into #tmp values(‘2005-05-10‘,‘负‘)
1)select rq, sum(case when shengfu=‘胜‘ then 1 else 0 end)‘胜‘,sum(case when shengfu=‘负‘ then 1 else 0 end)‘负‘ from #tmp group by rq

2) select N.rq,N.勝,M.負 from (
select rq,勝=count(*) from #tmp where shengfu=‘胜‘group by rq)N inner join
(select rq,負=count(*) from #tmp where shengfu=‘负‘group by rq)M on N.rq=M.rq

3)select a.col001,a.a1 胜,b.b1 负 from
(select col001,count(col001) a1 from temp1 where col002=‘胜‘ group by col001) a,
(select col001,count(col001) b1 from temp1 where col002=‘负‘ group by col001) b
where a.col001=b.col001
2.请教一个面试中遇到的SQL语句的查询问题
表中有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列。
------------------------------------------
select (case when a>b then a else b end ),
(case when b>c then b esle c end)
from table_name
3.面试题:一个日期判断的sql语句?
请取出tb_send表中日期(SendTime字段)为当天的所有记录?(SendTime字段为datetime型,包含日期与时间)
------------------------------------------
select * from tb where datediff(dd,SendTime,getdate())=0
4.有一张表,里面有3个字段:语文,数学,英语。其中有3条记录分别表示语文70分,数学80分,英语58分,请用一条sql语句查询出这三条记录并按以下条件显示出来(并写出您的思路):
   大于或等于80表示优秀,大于或等于60表示及格,小于60分表示不及格。
       显示格式:
       语文              数学                英语
       及格              优秀                不及格
------------------------------------------
select
(case when 语文>=80 then ‘优秀‘
        when 语文>=60 then ‘及格‘
else ‘不及格‘) as 语文,
(case when 数学>=80 then ‘优秀‘
        when 数学>=60 then ‘及格‘
else ‘不及格‘) as 数学,
(case when 英语>=80 then ‘优秀‘
        when 英语>=60 then ‘及格‘
else ‘不及格‘) as 英语,
from table

7.请用一个sql语句得出结果
从table1,table2中取出如table3所列格式数据,注意提供的数据及结果不准确,只是作为一个格式向大家请教。
如使用存储过程也可以。

table1

月份mon 部门dep 业绩yj
-------------------------------
一月份      01      10
一月份      02      10
一月份      03      5
二月份      02      8
二月份      04      9
三月份      03      8

table2

部门dep      部门名称dname
--------------------------------
      01      国内业务一部
      02      国内业务二部
      03      国内业务三部
      04      国际业务部

table3 (result)

部门dep 一月份      二月份      三月份
--------------------------------------
      01      10        null      null
      02      10         8        null
      03      null       5        8
      04      null      null      9
------------------------------------------
1)
select a.部门名称dname,b.业绩yj as ‘一月份‘,c.业绩yj as ‘二月份‘,d.业绩yj as ‘三月份‘
from table1 a,table2 b,table2 c,table2 d
where a.部门dep = b.部门dep and b.月份mon = ‘一月份‘ and
a.部门dep = c.部门dep and c.月份mon = ‘二月份‘ and
a.部门dep = d.部门dep and d.月份mon = ‘三月份‘ and
2)
select a.dep,
sum(case when b.mon=1 then b.yj else 0 end) as ‘一月份‘,
sum(case when b.mon=2 then b.yj else 0 end) as ‘二月份‘,
sum(case when b.mon=3 then b.yj else 0 end) as ‘三月份‘,
sum(case when b.mon=4 then b.yj else 0 end) as ‘四月份‘,
sum(case when b.mon=5 then b.yj else 0 end) as ‘五月份‘,
sum(case when b.mon=6 then b.yj else 0 end) as ‘六月份‘,
sum(case when b.mon=7 then b.yj else 0 end) as ‘七月份‘,
sum(case when b.mon=8 then b.yj else 0 end) as ‘八月份‘,
sum(case when b.mon=9 then b.yj else 0 end) as ‘九月份‘,
sum(case when b.mon=10 then b.yj else 0 end) as ‘十月份‘,
sum(case when b.mon=11 then b.yj else 0 end) as ‘十一月份‘,
sum(case when b.mon=12 then b.yj else 0 end) as ‘十二月份‘,
from table2 a left join table1 b on a.dep=b.dep
8.华为一道面试题
一个表中的Id有多个记录,把所有这个id的记录查出来,并显示共有多少条记录数。
------------------------------------------
select id, Count(*) from tb group by id having count(*)>1
select * from(select count(ID) as count from table group by ID)T where T.count>1

表形式如下:
Year      Salary
2000        1000
2001        2000
2002        3000
2003        4000
想得到如下形式的查询结果
Year      Salary
2000      1000
2001      3000
2002      6000
2003      10000
sql语句怎么写?
连接查询
SELECT b.YEAR, SUM(a.salary) salary FROM hello a, hello b WHERE a.YEAR <= b.YEAR GROUP BY b.YEAR 

子查询
select year ,(select sum(salary) from hello as B where B.year<=A.year ) from hello as A 

1.用一条SQL语句查询出每门课都大于80分的学生姓名
name   kecheng   fenshu
张三     语文       81
张三     数学       75
李四     语文       76
李四     数学       90
王五     语文       81
王五     数学       100
王五     英语       90

A: select distinct name from table where name not in (select distinct name from table where fenshu<=80)

2.学生表 如下:
自动编号   学号   姓名课程编号课程名称分数
1        2005001 张三 0001      数学    69
2        2005002 李四 0001      数学    89
3        2005001 张三 0001      数学    69
删除除了自动编号不同,其他都相同的学生冗余信息

A: delete tablename where 自动编号 not in(select min(自动编号) from tablename group by 学号,姓名,课程编号,课程名称,分数)
一个叫department的表,里面只有一个字段name,一共有4条纪录,分别是a,b,c,d,对应四个球对,现在四个球对进行比赛,用一条sql语句显示所有可能的比赛组合.
你先按你自己的想法做一下,看结果有我的这个简单吗?
答:select a.name, b.name
from team a, team b
where a.name < b.name

请用SQL语句实现:从TestDB数据表中查询出所有月份的发生额都比101科目相应月份的发生额高的科目。请注意:TestDB中有很多科目,都有1-12月份的发生额。
AccID:科目代码,Occmonth:发生额月份,DebitOccur:发生额。
数据库名:JcyAudit,数据集:Select * from TestDB
答:select a.*
from TestDB a
,(select Occmonth,max(DebitOccur) Debit101ccur from TestDB where AccID=‘101‘ group by Occmonth) b
where a.Occmonth=b.Occmonth and a.DebitOccur>b.Debit101ccur
************************************************************************************
面试题:怎么把这样一个表儿
year   month amount
1991   1     1.1
1991   2     1.2
1991   3     1.3
1991   4     1.4
1992   1     2.1
1992   2     2.2
1992   3     2.3
1992   4     2.4
查成这样一个结果
year m1   m2   m3   m4
1991 1.1 1.2 1.3 1.4
1992 2.1 2.2 2.3 2.4

答案一、
select year,
(select amount from   aaa m where month=1   and m.year=aaa.year) as m1,
(select amount from   aaa m where month=2   and m.year=aaa.year) as m2,
(select amount from   aaa m where month=3   and m.year=aaa.year) as m3,
(select amount from   aaa m where month=4   and m.year=aaa.year) as m4
from aaa   group by year

这个是Oracle  中做的:
select * from (select name, year b1, lead(year) over
(partition by name order by year) b2, lead(m,2) over(partition by name order by year) b3,rank()over(
partition by name order by year) rk from t) where rk=1;
重点
https://wenku.baidu.com/view/b1a772ee19e8b8f67c1cb922.html

http://www.cnblogs.com/GT_Andy/archive/2009/12/25/1921911.html

https://wenku.baidu.com/view/36246a4133687e21af45a977.html
时间: 2024-11-11 22:53:27

数据库知识点的相关文章

MySQL数据库知识点整理 (持续更新中)

一.修改用户密码 格式(在命令行下输入):mysqladmin -u 用户名 -p旧密码 password 新密码 1. 给root添加密码ab12:  mysqladmin -uroot -password ab12 2. 将root的密码修改为djg345:    mysqladmin -uroot -pab12 password djg345 二.添加新用户 格式:grant 权限 on 数据库名.表名 to 用户名@登录主机  identified by "密码" 1. 增加一

SQL 数据库知识点回顾

SQL2008 一.安装注意事项: 1.修改用户权限(在一个安装页面中有七八个)(改成net.) 2.添加当前系统用户为账户 二.主键,约束,索引 三.增删改查: insert.delete.update select__*或者列名_____from 表where_______排序分组 逐条核对,符合条件的显示出来 语句执行过程: 先找到表,筛选行结束,排序,筛选列 首先执行“from表”,最后执行select_______. 聚合函数:最终查询的结果集,进行聚合操作.位于select和from

数据库知识点总结

1. 数据库三范式是什么? 第一范式:表中每个字段都不能再分. 第二范式:满足第一范式并且表中的非主键字段都依赖于主键字段. 第三范式:满足第二范式并且表中的非主键字段必须不传递依赖于主键字段. 2. 什么是数据库事务? 事务具有四大特性:一致性.原子性.隔离性.持久性. 数据库事务是指:几个SQL语句,要么全部执行成功,要么全部执行失败.比如银行转账就是事务的典型场景. 数据库事务的三个常用命令:Begin Transaction.Commit Transaction.RollBack Tra

MySQL数据库知识点

1.什么是数据库 就是一个文件系统,通过标准SQL语言操作文件系统中数据 ---- 用来存放管理软件系统的数据 2.什么是关系型数据库 关系数据库,是建立在关系模型基础上的数据库,借助于集合代数等数学概念和方法来处理数据库中的数据.现实世界中的各种实体以及实体之间的各种联系均用关系模型来表示. 3.where 和 having 条件语句的区别 ? where 是在分组前进行条件过滤,having 是在分组后进行条件过滤 使用where地方都可以用 having替换 , 但是having可以使用分

数据库知识点总结归纳

一.基本概念 1.数据 (1)数据的定义:对客观事物的符号表示,如图形符号.数字.字母等,数据是数据库中存储的基本对象. (2)数据的种类:文字.图形.图像.声音 (3)数据的特点:数据与其语义是不可分的 2.数据库 数据库(DataBase简称DB)是按照数据结构来组织.存储和管理数据的仓库. 3.数据库管理系统(比如:MySql) (1)数据库管理系统(Database Management System 简称DBMS)是一种操纵和管理数据库的大型软件,是用于建立.使用和维护数据库. (2)

数据库知识点笔记

1. 脏读 :一个事务读到另一个事务未提交的更新数据. 脏读就是指当一个事务正在访问数据,并且对数据进行了修改,而这种修改还没有提交到数据库中,这时,另外一个事务也访问这个数据,然后使用了这个被更新后的数据. 2. 幻读 : 一个事务读到另一个事务已提交的新插入的数据. 例如第一个事务对一个表中的数据进行了修改,这种修改涉及到表中的全部数据行.同时第二个事务向表中插入一行新数据.那么第一个事务发现表中还有没有修改的数据行,就好象发生了幻觉一样. 3. 不可重复读 :一个事务读到另一个事务已提交的

mysql数据库知识点总结

一.数据库的基本操作 --------------------------------------------------------------数据库的安装以后更新---------------------------------------------------------------------------------- 在Linux系统下: 1.启动数据库服务:sudo service mysql start 2.停止数据库服务:sudo service mysql stop 3.重启

MySQL面试必考知识点:揭秘亿级高并发数据库调优与最佳实践法则

做业务,要懂基本的SQL语句: 做性能优化,要懂索引,懂引擎: 做分库分表,要懂主从,懂读写分离... 数据库的使用,是开发人员的基本功,对它掌握越清晰越深入,你能做的事情就越多. 今天我们用10分钟,重点梳理一遍以下几方面: 数据库知识点汇总: 数据库事务特性和隔离级别: 详解关系型数据库.索引与锁机制: 数据库调优与最佳实践: 面试考察点及加分项. 知识点汇总 一.数据库的不同类型 1.常用的关系型数据库 Oracle:功能强大,主要缺点就是贵 MySQL:互联网行业中最流行的数据库,这不仅

[转]10分钟梳理MySQL知识点:揭秘亿级高并发数据库调优与最佳实践法则

转:https://mp.weixin.qq.com/s/RYIiHAHHStIMftQT6lQSgA 做业务,要懂基本的SQL语句: 做性能优化,要懂索引,懂引擎: 做分库分表,要懂主从,懂读写分离... 数据库的使用,是开发人员的基本功,对它掌握越清晰越深入,你能做的事情就越多. 今天我们用10分钟,重点梳理一遍以下几方面: 数据库知识点汇总: 数据库事务特性和隔离级别: 详解关系型数据库.索引与锁机制: 数据库调优与最佳实践: 面试考察点及加分项. 一.数据库的不同类型 1.常用的关系型数