通过DB Link从Oracle到MS SQL Server查询-在Select语句中返回无输出

时间:2019-04-29 06:53:27

标签: sql-server oracle dblink

我在连接到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'
)

0 个答案:

没有答案