SQL查询:检索员工信息和所在部门名称

2025-04-06 05:55:59
推荐回答(1个)
回答1:

select a.*, b.dname from emp a,dept b where a.deptno=b.deptno;