我如何在 Microsoft Query 中 select 这个?

How can I select this in Microsoft Query?

我有一个存储过程和一个简单的 table。

我需要加入这两个对象,然后允许用户在 Excel 中使用 Microsoft Query 查看结果。

这就是我的。 Exec SP_Budget 创建全局临时文件 table 并填充 ##tmpBudget

exec SP_Budget;
Select g.name, g.address,g.Amount,b.BudgetAmt from gTable g
Left join ##tmpBudget b on b.NameID=g.NameID

微软查询只能做简单的

select * from tTable 

我该怎么做?

我必须有存储过程,因为它在 SP_Budget

中执行 UNpivot

编辑: 我越想这个。我想我需要 post 原来 SP_Budget 所以在这里。因为也许更好的方法是创建一个函数而不是 SP_Budget。这是我的 SP_Budget。是否可以将此 SP 转换为函数?

--this link show me how to build column list for the PIVOT/UNPIVOT 
--this link show me how to build column list of a specific table 
--here we build the dynamic query for the column list for the PIVOT/UNPIVOT 
declare @sql  AS NVARCHAR(MAX);
declare @cols nvarchar(max);
select @cols = coalesce(@cols+N',', N'') + quotename(c.name) from syscolumns c
inner join sysobjects o on c.id = o.id and o.xtype = 'u'
where o.name = 'AcctHist' and c.name not in ('PID', 'UID') and c.name like 'ptdbal%' and  c.name <> 'PtdBal12' order by c.colid

--Construct the full T-SQL statement
--and execute dynamically
SET @sql = N'select 
DB,Acct,Sub,cpnyid
,Fiscyr+
CASE WHEN len(Convert(varchar(2),CONVERT(int,right(Period,2))+1))=1
THEN ''0''+Convert(varchar(2),CONVERT(int,right(Period,2))+1) 
ELSE Convert(varchar(2),CONVERT(int,right(Period,2))+1)
END "Period"
,Amounts
from (
SELECT  A.DB,A.Sub,A.acct,A.FiscYr,A.CpnyID
, sum(A.PtdBal00) "PtdBal00" 
,sum(A.PtdBal01) "PtdBal01"
,sum(A.PtdBal02) "PtdBal02"
,sum(A.PtdBal03) "PtdBal03"
,sum(A.PtdBal04) "PtdBal04"
,sum(A.PtdBal05) "PtdBal05"
,sum(A.PtdBal06) "PtdBal06"
,sum(A.PtdBal07) "PtdBal07"
,sum(A.PtdBal08) "PtdBal08"
,sum(A.PtdBal09) "PtdBal09"
,sum(A.PtdBal10) "PtdBal10"
,sum(A.PtdBal11) "PtdBal11"
FROM vz_Finance_Budget A
Group by   A.DB,A.Sub,A.acct,A.FiscYr,A.CpnyID
)xx
UNPIVOT (Amounts for Period in ('+@cols+')) unpiv;';
EXEC sp_executesql @sql;

编辑2: 谢谢你的所有建议。我认为限制因素是微软查询本身。加上微软查询应该用更新的东西代替(我认为)。而不是将我的服务器配置为允许 openrowset 或 OPENQuery。我将研究 Microsoft 查询替换。 不确定这是否是正确的方法。但我会在这里更新。谢谢。

Edit3:现在尝试此博客:http://blogs.office.com/2010/06/07/running-a-sql-stored-procedure-from-excel-no-vba/完成后我会更新

据我所知,您可以在 Microsoft Query

中使用明确的 JOIN

Description of the usage of joins in Microsoft Query

SELECT ....
FROM tbl1, tbl2
WHERE tbl1.Id = tbl2.Id

更新

如果你想在Excel中设置结果集,你可以使用OPENROWSET将数据从SQL服务器导出到Excel。

INSERT INTO OPENROWSET('Microsoft.Jet.OLEDB.4.0', 
'Excel 8.0;Database=C:\testing.xls;', 
'SELECT name, address, Amount, BudgetAmt FROM [Sheet1$]') 
SELECT g.name, g.address, g.Amount, b.BudgetAmt FROM gTable g
LEFT JOIN #tmpBudget b ON b.NameID = g.NameID

正如你刚才提到的,你需要先将你的 proc 结果保存到临时 table

sp_configure 'Show Advanced Options', 1
GO
RECONFIGURE
GO
sp_configure 'Ad Hoc Distributed Queries', 1
GO
RECONFIGURE
GO

SELECT * INTO #tmpBudget
FROM OPENROWSET('SQLNCLI'
                ,'Server=(local)\SQL2008;Trusted_Connection=yes;'
                ,'EXEC SP_Budget') 

我使用下面的博客解决了这个问题 http://blogs.office.com/2010/06/07/running-a-sql-stored-procedure-from-excel-no-vba/

基本上在 excel 中,当您单击数据选项卡时 - 来自其他来源 - 而不是 "from microsoft query"。我select"from SQL server"。与 "from SQL Server"。我可以在 "Connection properties - definition" 到 select 命令类型中选择 SQL (而不是 table)

博客用截图解释了这一点...谢谢