我在连接到MS SQL Server数据库的Oracle数据库上具有DB链接。
我在下面的查询select name from table1@sqlserver where name = 'John'
中返回了说“约翰”的声音
当我尝试在in select中使用以上语句时,我没有输出。
select *
from table2
where name in
(
select name from table1@sqlserver where name = 'John'
)
我也尝试过
select *
from table2
where name in
(
select to_char("name") from table1@sqlserver where name = 'John'
)