当前位置:网站首页>SQL create temporary table
SQL create temporary table
2022-07-03 07:22:00 【Maple Leaf pear flower】
When querying data in the database , For example, query out type According to the unused value , Another alias , It's a little troublesome to cycle through the program , Now there is a way to connect the temporary table with the query table to query . So now you need to create a new temporary table , Then use the left join to join the query .
1、 Create a new temporary table
select '100' as val,'sc' as lx UNION select '200' as val,'zy' as lx UNION select '300' as val,'bg' as lx UNION select '600' as val,'yy' as lx
2、 Link query
select ty.*,ta.* from table ta left join (select '100' as val,'sc' as lx UNION select '200' as val,'zy' as lx UNION select '300' as val,'bg' as lx UNION select '600' as val,'yy' as lx ) ty on ty.lx=ta.lx
边栏推荐
- PHP install composer
- Take you through the whole process and comprehensively understand the software accidents that belong to testing
- 在 4EVERLAND 上存储 WordPress 媒体内容,完成去中心化存储
- Advanced API (local simulation download file)
- Jeecg request URL signature
- II. D3.js draw a simple figure -- circle
- Download address collection of various versions of devaexpress
- 3311. Longest arithmetic
- Chrome 98 Private Network Access problem w/ disabled web security: Request had no target IP address
- 万卷书 - 价值投资者指南 [The Education of a Value Investor]
猜你喜欢
Spa single page application
Le Seigneur des anneaux: l'anneau du pouvoir
专题 | 同步 异步
Inno Setup 制作安装包
File operation serialization recursive copy
FileInputStream and fileoutputstream
Introduction of buffer flow
最全SQL与NoSQL优缺点对比
PAT甲级真题1166
Store WordPress media content on 4everland to complete decentralized storage
随机推荐
Setting up the development environment of dataworks custom function
万卷书 - 价值投资者指南 [The Education of a Value Investor]
【最详细】最新最全Redis面试大全(50道)
Common architectures of IO streams
Specified interval inversion in the linked list
Laravel frame step pit (I)
[solved] unknown error 1146
JMeter test result output
Le Seigneur des anneaux: l'anneau du pouvoir
[Fiddler actual operation] how to use Fiddler to capture packets on Apple Mobile Phones
Basic components and intermediate components
萬卷書 - 價值投資者指南 [The Education of a Value Investor]
深度学习参数初始化(一)Xavier初始化 含代码
Common problems in io streams
Inno setup production and installation package
TypeScript let与var的区别
Jeecg menu path display problem
Use of other streams
[vscode - vehicle plug-in reports an error] cannot find module 'xxx' or its corresponding type declarations Vetur(2307)
Take you through the whole process and comprehensively understand the software accidents that belong to testing