mysql case when 嵌套子查询语句!
mysql case when 嵌套子查询语句!
1、创建两张测试表
create table test_case1(id number, value varchar2(200));
create table test_case2(id number, value varchar2(200));
2、先在表32313133353236313431303231363533e4b893e5b19e313334313738621中插入测试数据
insert into test_case1 values(1,'a');
insert into test_case1 values(2,'b');
insert into test_case1 values(3,'c');
insert into test_case1 values(4,'d');
insert into test_case1 values(5,'e');
commit;
3、在表2中插入数据
insert into test_case2 values(1,'aa');
insert into test_case2 values(2,'bb');
insert into test_case2 values(3,'cc');
insert into test_case2 values(6,'ee');
commit;
4、两表关联,并编写case when的语句
select t.*,
case when b.id is not null then '存在' else '不存在' end flag
from TEST_CASE1 t, TEST_CASE2 b
where t.id = b.id(+)
快来试试吧。
学习资料见知识星球。
以上就是今天要分享的技巧,你学会了吗?若有什么问题,欢迎在下方留言。
快来试试吧,小琥 my21ke007。获取 1000个免费 Excel模板福利!
更多技巧, www.excelbook.cn
欢迎 加入 零售创新 知识星球,知识星球主要以数据分析、报告分享、数据工具讨论为主;
1、价值上万元的专业的PPT报告模板。
2、专业案例分析和解读笔记。
3、实用的Excel、Word、PPT技巧。
4、VIP讨论群,共享资源。
5、优惠的会员商品。
6、一次付费只需99元,即可下载本站文章涉及的文件和软件。
共有 0 条评论