select d.name,e.name from tb_dept d right join tb_emp e on d.emp_id=e.id;
时间: 2024-03-19 16:40:29 浏览: 145
oracle考试题目.docx
这是一个 SQL 查询语句,用于查询两个表 `tb_dept` 和 `tb_emp` 的信息。它使用了右连接(right join)操作符,表示查询结果中包含 `tb_dept` 表中所有记录和 `tb_emp` 表中匹配的记录,如果 `tb_emp` 表中没有匹配记录,则 `tb_dept` 表中的记录也会被包含在结果中。查询结果包含两列,分别是 `tb_dept` 表中的 `name` 列和 `tb_emp` 表中的 `name` 列。
阅读全文