R -- RJDBC 无法重命名 SQL select 中的列
R -- RJDBC not able to rename column in SQL select
使用 RJDBC 库似乎无法重命名 SQL select 中的列。
有人知道解决方法吗?我发现这个 useJDBC4ColumnNameAndLabelSemantics=true 适用于 Db2,但不确定它是否可以在 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
找到这个 ->
例如,在我的例子中,数据库名称是 SAMPLE,如果我希望应用程序显示查询中的相关 ID 名称,那么我使用数据库名称:
SAMPLE:useJDBC4ColumnNameAndLabelSemantics=No;
使用 RJDBC 库似乎无法重命名 SQL select 中的列。 有人知道解决方法吗?我发现这个 useJDBC4ColumnNameAndLabelSemantics=true 适用于 Db2,但不确定它是否可以在 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
找到这个 ->
例如,在我的例子中,数据库名称是 SAMPLE,如果我希望应用程序显示查询中的相关 ID 名称,那么我使用数据库名称:
SAMPLE:useJDBC4ColumnNameAndLabelSemantics=No;