【发布时间】:2019-10-03 11:07:11
【问题描述】:
我在 SQL Server 2014 中使用 OpenQuery 从 Progress 中检索数据。
这是我的查询:
SELECT *
FROM OPENQUERY(PRG, 'SELECT "cde","dsc" FROM tblCodes')
它会像这样检索数据:
cde dsc
=== =====
one test
one another
one value
two goes
two here
two also
three example
但是,我需要让结果看起来像这样:
cde dsc
=== =====
one test
two goes
three example
如何在OpenQuery 中执行此操作?
【问题讨论】:
标签: sql-server tsql progress-4gl openquery progress-db