jdbc如何实现多表查询

2025-04-17 11:21:25
推荐回答(1个)
回答1:

可以多表连接做视图

例如:
create view
as
select a.dno,a.dname,b.etype , b.eno from dept a,ee b where dno=eno;