摘要:
teacher表 select t.t_no,t.t_name,t.t_age from teacher t where t.t_age > any (select t_age from teacher where t_age>29); >any的意思是大于任意一条即可,所以结果等价于 >30,即只 阅读全文
摘要:
现在有Teacher表 以及Age_J表 我们希望使用Teacher中的Age作为判别对象,将Age_LVL左连接到Teacher表中 select t.t_no,t.t_name,t.t_age ,a.age_lvl from teacher t left join age_j a on t.t_ 阅读全文
摘要:
with student as( select 1 as id from dual union all select null as id from dual union all select 3 as id from dual ) --如果使用count(1)则计算所有,如果列出的使用count( 阅读全文