摘要:
select * from emp; --emp全表 select * from dept; --dept全表 --查询10号部门中工资大于20号部门最高工资的员工信息(子查询,聚合函数)select * from emp where deptno=10 and sal>(select max(sa 阅读全文
posted @ 2023-03-24 10:12
Argitacos
阅读(135)
评论(0)
推荐(0)