-- join和left join的区别-- 如果是join则右侧的数据有的就插,没的就啥也不干,交白卷,也不留null-- 但是left join让右侧数据在没有对应数据时补上了nullselect e.name,b.bonus
from Employee e leftjoin bonus b
on e.empId=b.empId
where b.bonus <1000or b.bonus isnull;
1.While 循环 While 语句的语法格式为: While 条件表达式 do 循环语句; 循环语句可以是任何合法的语句,也可以是另一个循环语句。条件表达式返回一个逻辑 类型的值,当其为 True 时,系统执行其后的循环语句,…