- 博客(2)
- 收藏
- 关注
原创 【尝试刷AQL】计算奖金(if,substring)
写出一个SQL 查询语句,计算每个雇员的奖金。如果一个雇员的id是奇数并且他的名字不是以'M'开头,那么他的奖金是他工资的100%,否则奖金为0。 代码: select employee_id as 'employee_id', if ((substring(name,1,1)='M') or (employee_id % 2=0),0,salary) as 'bonus' from employees ORDER BY employee_id; 公式: SUBSTRING ( <col
2022-05-17 19:24:57 151
原创 【尝试刷SQL】找出所有从不订购任何东西的客户(左联结)
某网站包含两个表,Customers表和Orders表。找出所有从不订购任何东西的客户. Customers 表: +----+-------+ | Id | Name | +----+-------+ | 1 | Joe | | 2 | Henry | | 3 | Sam | | 4 | Max | +----+-------+ Orders 表: +----+------------+ | Id | CustomerId | +----+------------+ | ...
2022-05-17 18:04:40 228
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人