R-RJDBC无法在SQL select中重命名列

时间:2018-05-03 23:20:06

标签: r db2 rename rjdbc

使用RJDBC库似乎无法在SQL select中重命名该列。 有人知道解决方法吗?我发现这对于Db2使用了JDBC4ColumnNameAndLabelSemantics = true,但不确定它是否可以在R中使用它。

Select
a.customer,
b.customer as main_customer,  <-- returns as customer not main_customer
b.customer_email
from customer a,
     main_customer b
where a.customer_id = b.customer_id

1 个答案:

答案 0 :(得分:0)

发现这个 - &gt; Column alias querying IBM DB2 using Oracle SQL developer

例如,在我的情况下,数据库名称是SAMPLE,如果我希望应用程序显示我的查询中的相关ID名称,那么我将用于数据库名称:

SAMPLE:useJDBC4ColumnNameAndLabelSemantics=No;