-6

我正在尝试使用order by内部(通过查询)从 SQL Server 2008 导出到 Excel,但出现语法错误。

请告诉我我错过了什么(我确定它与它有关ORDER BY并且它很小):

CREATE TABLE `Z_STOCK_PARTNERS_2` (
`Date` DateTime,
`Partner` LongText,
`Weight` Double,
`TotalCost` Double,
`ProductGroupID` LongText
ORDER BY `ProductGroupID`
)
4

1 回答 1

2
SELECT [Date], [Partner], [Weight], [TotalCost], [ProductGroupID]
FROM Z_STOCK_PARTNERS_2
ORDER BY `ProductGroupID`
于 2013-05-30T17:26:46.277 回答