当前位置:网站首页>MySQL复杂查询使用临时表/with as(类似表变量)
MySQL复杂查询使用临时表/with as(类似表变量)
2022-04-23 02:39:00 【一只努力xx的程序媛】
查询需求:
如果第一个SQL能查出结果,则返回结果,否则,执行第二条SQL,返回第二条SQL的结果。
SQL Server中使用表变量的方式:
如果查出有“wangwang”用户则返回,否则查询“zhangzhang”用户的id返回。有优先级
declare @temp table(id int)
insert into @temp
select id
from user
where name = 'wangwang'
if not exists(select id from @temp)
begin
select id
from user
where name='zhangzhang'
end else
begin
select id from @temp
end
MySQL中没有表变量,只能使用临时表代替:
CREATE TEMPORARY TABLE temp1(id int ); -- 创建临时表1
insert into temp1
select id
from user
where name='wangwang';
CREATE TEMPORARY TABLE temp2(id int ); -- 创建临时表2
insert into temp2
select id
from user
where name='zhangzhang';
CREATE TEMPORARY TABLE temp1_re select id from temp1; -- 复制临时表1
select (case when (SELECT count(*) FROM temp1_re)>0 then -- 使用case when判断
(select id from temp1 order by id desc limit 1) else (
select id from temp2 order by id desc limit 1) end ) id ;
注意:
(1)需要复制临时表1,是因为“在同一个query语句中,你只能查找一次临时表”,否则报错“can’t reopen ”。针对表中数据不多的情况下,可以复制表进行操作。
(2)因为要在mybatis的xml中执行多条SQL,数据库连接需要设置allowMultiQueries=true。
2019-10-29更新:
发现MySQL有个类似SQLserver中的表变量的语句,那就是with as,也叫做子查询部分(subquery factoring),可以定义一个SQL片断,该SQL片断会被整个SQL语句用到,例如:
with temp_a as(
select id,name from user where name='wangwang'
),
temp_b as(
select id,name from user where name='zhangzhang'
)
select (case when (SELECT count(*) FROM temp_a)>0 then -- 使用case when判断
(select id from temp_a order by id desc limit 1)
else
(select id from temp_b order by id desc limit 1)
end
) id
这种写法是MySQL 8.0的特性
参考:https://www.cnblogs.com/Niko12230/p/5945133.html
https://stackoverflow.com/questions/324935/mysql-with-clause
版权声明
本文为[一只努力xx的程序媛]所创,转载请带上原文链接,感谢
https://blog.csdn.net/qq_23888451/article/details/102686280
边栏推荐
- Handwritten memory pool and principle code analysis [C language]
- 1215_ Hello world used by scons
- Fashion MNIST 数据集分类训练
- Target narak
- 本地远程访问云服务器的jupyter
- Day 4 of learning rhcsa
- Applet reads files
- Niuke hand speed monthly race 48 C (I can't understand the difference. It belongs to yes)
- 【2019-CVPR-3D人体姿态估计】Fast and Robust Multi-Person 3D Pose Estimation from Multiple Views
- Arduino esp8266 network upgrade OTA
猜你喜欢

Efficient music format conversion tool Music Converter Pro

小程序 canvas 画布半圆环

Arduino esp8266 network upgrade OTA

Using go language to build web server

PTA: praise the crazy devil

The 16th day of sprint to the big factory, noip popularization Group Three Kingdoms game

一个国产图像分割项目重磅开源!

RT_ Thread ask and answer

Fast and robust multi person 3D pose estimation from multiple views

全局、独享、局部路由守卫
随机推荐
005_ redis_ Set set
Explain JS prototype and prototype chain in detail
每日一题冲刺大厂第十六天 NOIP普及组 三国游戏
TypeScript(1)
Rhcsa day 4 operation
Execute external SQL script in MySQL workbench and report error
谷雨
Daily question (April 22, 2022) - rotation function
MySQL JDBC programming
Talk about current limiting
小程序 canvas 画布半圆环
Tp6 Alibaba Cloud SMS Window message Curl Error 60: SSL Certificate Problem: Unable to get local issuer Certificate
[untitled]
Synchronized锁及其膨胀
Modification du contenu de la recherche dans la boîte déroulante par PHP + MySQL
Implementation of distributed scenario business operation log (based on redis lightweight)
JDBC JDBC
Go language ⌈ mutex and state coordination ⌋
Rhcsa day 3 operation
Go语言web中间件的使用