SQL高级

1. SELECT TOP子句

1. SQL Server | MS Access 语法
sekect top number | percent 字段名 from 表名;
2. MySQL 和 Oracle 中的 select top 等价
select * from school limit 8;
select 字段名 | * from 表名 limit number;
select 字段名 | * from 表名 where rownum <= number;
3. MySQL select top percent 实例

在 Microsoft SQL Server 数据库中可执行

select top number percent * from 表名;

2. LIKE语法

select 表名 from where 字段名 like pattern; 
例: select school from where name 'G%';G开头的所有名字

[%]在模式的前后定义通配符

select * from school where name like  '%k';  以k结尾
select * from school where name like  'c%';  以c开头
select * from school where name like  '%oo%';  含有oo
select * from school -> where name like  '%00%';  不含有oo的所有数据

3. 通配符

1. % 替代 0 个或多个字符
select * from 表名 where 字段名 like  '值';
select * from school where name like 't%';
2. _ 替代一个字符
select * from 表名 where 字段 like '_值';  值的首字符用_代替,
select * from school where name like '_ongzhu'; 也可以_ on_zh_
3. [charlist] 字符列中的任何单一字符
select * from 表名 where 字段名 regexp '^[字符]';
select * from school where name regexp '^[ty]';
select * from school where name regexp '^[a-z]';  选取 name以 a 到 z 字母开头的名字
4. [^charlist] 或 [!charlist] 不在字符列中的任何单一字符
select * from school where name regexp '^[^a-z]';  选取 name 不以 A 到 H 字母开头的名字

4. 操作符

1. [in]

允许在 where 子句中规定多个值

select * from 表名 where 字段名 in (values1,values2,...);
select * from school where remark in ('keai','eef');
2. [between]

选取介于两个值之间的数据范围内的值

select * from 表名 where 字段名 between value1 and value2;
select * from school where number  between 700 and 900;

3. [not between]

选取不在这个范围内的值

select * from 表名 where 字段名 not between value1 and value2;
select * from school where number  not between 700 and 900; 
4. [带有in 的 between]
select * from 表名 where (字段名 between value and value ) and not 字段名 in ( 'value','value');
select * from school where (字段名 between value and value ) and not 字段名 in ( 'value','value');
5. [带有文本值的not between]
select * from 表名 where 字段名 not between '值' and '值';
select * from school where name not between 'a' and 'h';
6. [带有日期值的between]
select * from 表名 where date between '日期值' and ‘日期值’;
select * from dates where date bewttn '2017-03-25' and '2017-04-19';
7. [union]

操作符合并两个或多个 SELECT 语句的结果

select 字段名 from 表1  union select 字段名 from 表2 order by 字段名;  三个字段名为同名
select country from website union select country from apps order by country;
8. [union all]

选取所有的country

select 字段名 from 表1  union all select 字段名 from 表2 order by 字段名;  三个字段名为同名
select country from website union all select country from apps order by country;
9. [带有where 的 union all]

选取所有的某一个值

select 字段名 , 字段名 from 表1  where 字段名='值' union all select 字段名,  字段名 from 表2 where 字段名='值' order by 字段名;  三个字段名为同名
select country, name from website where country='CN' union all select country, appname from apps where country='CN' order by country;

5. SQL别名

1. [列别名]
select  字段名 as 别名 from 表名;
select count as number from dates;
多列合一列如下:
select name, concat(字段名, ',' , 字段名,.....)as 别名 from 表名;
select name, concat (name, ',' , count) as nc from dates;
2. [表别名]
select 别名.字段名,别名.字段名,别名.字段名,... from 表名 as 别名 where 别名.字段名='值';
select d.id, d.name, d.count, d.date from dates as d where d.name='safari';
[下面的情况下使用别名很有用:]
  1. 在查询中涉及超过一个表
  2. 在查询中使用了函数
  3. 列名称很长或者可读性差
  4. 需要把两个列或者多个列结合在一起

3. SQL JOIN

1. 可以使用的不同的 SQL JOIN 类型:

** INNER JOIN**
如果表中有至少一个匹配,则返回行

select 表名.字段名,  表名.字段名,  表名.字段名, ... from 表名1 inner join 表名2 on 表名1.字段名=表名2.字段名;
select dates.id, dates.name, dates.date, log.alexa from dates inner join log on dates.id=log.sid;
                                          or
select dates.id, dates.name, dates.date, log.alexa from dates  join log on dates.id=log.sid;    

LEFT JOIN
即使右表中没有匹配,也从左表返回所有的行

select 表名.字段名,  表名.字段名,  表名.字段名, ... from 表名1 left join 表名2 on 表名1.字段名=表名2.字段名;
select dates.id, dates.name, dates.date, log.alexa from dates left join log on dates.id=log.sid;
                                    or
select dates.id, dates.name, dates.date, log.alexa from dates left outer join log on dates.id=log.sid;

** RIGHT JOIN**
即使左表中没有匹配,也从右表返回所有的行

select 表名.字段名,  表名.字段名,  表名.字段名, ... from 表名1 right join 表名2 on 表名1.字段名=表名2.字段名;
select dates.id, dates.name, dates.date, log.alexa from dates right join log on dates.id=log.sid;
                                    or
select dates.id, dates.name, dates.date, log.alexa from dates right outer join log on dates.id=log.sid;

FULL OUTDER JOIN
只要其中一个表中存在匹配,则返回行

MySQL中不支持 FULL OUTER JOIN,可以在 SQL Server 测试以下实例。

select 表名.字段名,  表名.字段名,  表名.字段名, ... from 表名1 full outer join 表名2 on 表名1.字段名=表名2.字段名 order by 表2.字段名 desc;
select  dates.name, dates.date, log.count from dates full outer join log on dates.id=log.sid order by log.count desc;

4. INSERT INTO SELECT

复制A表中的数据到B表

insert into A表 (字段名,字段名,...) select 字段名,字段名 from B表;
insert into website (name, country) select appname, country from apps;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,542评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,596评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,021评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,682评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,792评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,985评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,107评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,845评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,299评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,612评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,747评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,441评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,072评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,828评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,069评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,545评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,658评论 2 350

推荐阅读更多精彩内容