mysql-开发日记-case实验

 1.数组准备

create table tbCase1(id int,v1 int,pid int)
create table tbCase2(id int,v1 int)

 

 

2.case实验 

select *,
	case 
	  when 1=1  then 1
    else 2	
	end cat
from tbcase1

 

3.null 实验 

select tc1.id,tc1.v1,tc2.v1,
	case tc2.v1
	  when null then '未连接'
    else '已连接'	
	end cat
from tbcase1 tc1
left join tbcase2 tc2 on tc2.id = tc1.pid

 

 

4.isNull函数实验 

select tc1.id,tc1.v1,tc2.v1,
	case 
	  when ISNULL(tc2.v1) then '未连接'
    else '已连接'	
	end cat
from tbcase1 tc1
left join tbcase2 tc2 on tc2.id = tc1.pid

 

5.嵌套传参数

select 
id
pid, 
(select count(*) from tbcase2 where id = pid) as pidCount
from tbcase1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值