网站首页 站内搜索

搜索结果

查询Tags标签: commission,共有 3条记录
  • MySQL常用的单行函数汇总4——流程控制函数

    1.IF函数: IF(condition,value1,value2):如果condition条件成立,则返回value1的值,如果condition条件不成立,则返回value2的值 实例:1 SELECT last_name,salary,IF(salary >= 6000,高工资,低工资) "details" 2 FROM employees; 3 4 SELECT last_name,c…

    2022/4/1 2:19:39 人评论 次浏览
  • 2021-10-09 MySQL查询练习题

    1.查询没有奖金,且月工资小于18000的salary,last_name select last_name,salary from employees where commission_pct is null and salary<18000; 2.查询employees表中,job_id不为”IT“或者工资为12000的员工信息 select * from employees where job_id not like …

    2021/10/10 16:54:33 人评论 次浏览
  • 2021-10-09 MySQL查询练习题

    1.查询没有奖金,且月工资小于18000的salary,last_name select last_name,salary from employees where commission_pct is null and salary<18000; 2.查询employees表中,job_id不为”IT“或者工资为12000的员工信息 select * from employees where job_id not like …

    2021/10/10 16:54:33 人评论 次浏览
扫一扫关注最新编程教程