数据挖掘鄙视题-数据库(查询)

1、如何写sql查询语句查找11位手机号码所有后四位尾数符合AABB或者ABAB或者AAAA形式的电话号码?
设表PhoneNum

select phone from PhoneNum 
where (SUBSTRING(phone, 11)=SUBSTRING(phone, 10, 1)
       and 
       SUBSTRING(phone, 9, 1)=SUBSTRING(phone, 8, 1)
       )
or (SUBSTRING(phone, 11)=SUBSTRING(phone, 9, 1)
    and 
    SUBSTRING(phone, 10, 1)=SUBSTRING(phone, 8, 1)
    )

2、 用一条SQL 语句 查询出每门课都大于80 分的学生姓名

name kecheng fenshu
张三 语文 81
张三 数学 75
李四 语文 76
李四 数学 90
王五 语文 81
王五 数学 100
王五 英语 90
--- 解法1 ------
select name from table
group by name having min(fenshu)>80

--- 解法2 ------
select distinct name from table 
where name not in (select distinct name from table where fenshu<=80)

3、删除除了自动编号不同, 其他都相同的学生冗余信息

自动编号 学号 姓名 课程编号 课程名称 分数
1 2005001 张三 0001 数学 69
2 2005002 李四 0001 数学 89
3 2005001 张三 0001 数学 69
delete tablename 
where 自动编号 not in(select min( 自动编号) 
                     from tablename 
                     group by 学号, 姓名, 课程编号, 课程名称, 分数)

4、从TestDB 数据表中查询出所有月份的发生额都比101 科目相应月份的发生额高的科目。请注意:TestDB 中有很多科目,都有1 -12 月份的发生额。
AccID :科目代码,Occmonth :发生额月份,DebitOccur :发生额。
数据库名:JcyAudit ,数据集:Select * from TestDB

select *
from TestDB as 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

5、选出6、7、8月份电话某月消费在51到100之间,且在9、10月份消费均为0的用户。

SELECT DISTINCT ID
FROM A 
WHERE (COST BETWEEN 50 AND 100
       AND ID NOT IN (SELECT distinct ID FROM a
                     WHERE (MONTH = 9 AND COST != 0)
                     OR (MONTH = 10 AND COST != 0)
                     )
       ) 

6、选出6、7、8月份电话消费均在51到100之间,且在9、10月份消费均为0的用户。(目前个人想到的是穷举)

7、 将下表B进行dcast操作

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 B m where month=1 and m.year=B.year) as m1,
(select amount from B m where month=2 and m.year=B.year) as m2,
(select amount from B m where month=3 and m.year=B.year) as m3,
(select amount from B m where month=4 and m.year=B.year) as m4
from B group by year

8、表A结构如下:
Member_ID (用户的ID,字符型)
Log_time (用户访问页面时间,日期型(只有一天的数据))
URL (访问的页面地址,字符型)
要求:提取出每个用户访问的第一个URL(按时间最早),形成一个新表(新表名为B,表结构和表A一致)

create table B as 
select Member_ID, min(Log_time), URL 
from A 
group by Member_ID ;

你可能感兴趣的:(个人)