mysql同时查询两个库中的数据,语句怎么写

根据DB1中table1中的一个值,查询DB2中table2中对应值的其他参数
2024-11-30 10:37:20
推荐回答(5个)
回答(1):

select * from DB2 where ? in (select ? from DB1 where ?=?)
or
select DB2.* from DB2 inner join DB1 on DB2.?=DB1.? where DB1.?=?

回答(2):

select * from DB1.table ,DB2.table2 ;

回答(3):

select * from table2 where id=(select id from table1 where tid=3)

回答(4):

你的 DB1 和 DB2 在同一个 mysqld 实例里运毕肆好行的吗雹滑?还手铅是跑在两个 mysqld 实例上?

回答(5):

你自己想的吧,希望将来可以这么操作。。。