Mysql的switch语句
select case status when 1 then ‘成功‘ when 2 then ‘失败‘ else ‘其他‘ end from user 1,case后面紧跟要被作为判断的字段2,when后面跟判断条件3,then后面跟结果4,else相当于d
2024-12-23
python技巧 switch case
不同于C语言和SHELL,python中没有switch case语句,关于为什么没有,官方的解释是这样的使用Python模拟实现的方法: def switch_if(fun, x, y): if fun == 'add':
2024-12-23