Mysql中select条件取值写法

2021/4/10 19:22:15

本文主要是介绍Mysql中select条件取值写法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

if(condition, a, b)

select sum(if(user_id>0, 1, 0)) as reigistered_count from order

case when condition then [A] else [B] end

select case grade>9 then '初中' else '小学' end as grade from student


这篇关于Mysql中select条件取值写法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程