保留sql-server-2016中输出表中data.frame的列名

时间:2015-12-29 13:31:59

标签: sql-server r sql-server-2016

我在sql-server-2016中有一张表:

CREATE TABLE #tempData (A int not null) 
 INSERT INTO #tempData   VALUES (0);
GO

现在我可以调用我的R脚本,将表作为输入数据(包括列名):

EXECUTE  sp_execute_external_script
                @language = N'R'
              , @script = N'
                        df <- InputDataSet
                        df$B <- 1L'
              , @input_data_1 = N'SELECT * FROM #tempData'
              , @output_data_1_name = N'df'
WITH RESULT SETS (
    (A int not null, B int not null)
);

返回:

A   B
0   1

正如所料。但是我可以在不指定名称{A,B}的情况下执行相同操作,即它将直接使用data.frame中的名称。

2 个答案:

答案 0 :(得分:0)

根据当前的文件(https://msdn.microsoft.com/en-us/library/mt604368.aspx),似乎不可能。

WITH RESULTS SETS clause is mandatory if you are returning a result set from R . The specified column data types need to match the types supported in R (bit, int, float, datetime, varchar)

答案 1 :(得分:0)

不幸的是,今天BxlServer如何在SQL Server中翻译R,你必须设置变量并输入RESULTS SET。