0

我有一些在 mssql 平台上执行良好的 SQL,但我们从 switch yard camel flow(SQL 绑定)执行它不起作用。

sql是

SELECT
p.ProductID,p.dtGTIN,p.ProductWeight      
,p.dtPurchasePriceUnit,p.dtItemGroupID,
p.dtPromotionID,p.IntroductionDate,p.dtOnOrder,
p.dtExposureGroup,p.dtPlanogram,p.ProductHeight,
p.ProductWidth,p.ProductLength,p.dtPackageSize1,
p.productHeightUOMID,p.productWidthUOMID,p.productLengthUOMID,
pn.dtProductNameDescription1,pn.dtProductNameDescription2,
pv.VendorID,pr.ReferenceNumber
FROM ODS_Product p
    JOIN ODS_ProductName pn 
ON pn.ProductID=p.ProductID and pn.BusinessUnitId=p.BusinessUnitId
    JOIN ODS_ProductVendor pv 
ON pv.ProductID=p.ProductID and pv.BusinessUnitId=p.BusinessUnitId
    LEFT JOIN ODS_dtProductReference pr 
ON (pr.ProductID=p.ProductID and pr.BusinessUnitId=p.BusinessUnitId and      
    pr.ReferenceID='SRII')
where p.ProductID=# and p.BusinessUnitId=#

消息是

Caused by exception of type com.microsoft.sqlserver.jdbc.SQLServerException, 
message: com.microsoft.sqlserver.jdbc.SQLServerException: The multi-part     
identifier "p.ProductID" could not be bound.: 
org.switchyard.HandlerException: org.switchyard.HandlerException: 
org.springframework.jdbc.UncategorizedSQLException: 

PreparedStatementCallback; uncategorized SQLException for SQL. SQL state  
[null]; error code [0]; com.microsoft.sqlserver.jdbc.SQLServerException: The 
multi-part identifier "p.ProductID" could not be bound.; nested exception is 
com.microsoft.sqlserver.jdbc.SQLServerException: 
com.microsoft.sqlserver.jdbc.SQLServerException: The multi-part identifier 
"p.ProductID" could not be bound.

知道为什么吗?

4

3 回答 3

0

您将隐式连接与显式连接混合在一起。这是允许的,但你需要知道如何正确地做到这一点。

问题是,显式连接(使用 JOIN 关键字实现的连接)优先于隐式连接(“逗号”连接,其中连接条件在 WHERE 子句中指定)。

于 2017-01-17T11:49:45.543 回答
0

据我所知,您不能在 Join 子句中使用and 。请尝试从 join 语句中删除 and 部分。

SELECT
p.ProductID,p.dtGTIN,p.ProductWeight      
,p.dtPurchasePriceUnit,p.dtItemGroupID,
p.dtPromotionID,p.IntroductionDate,p.dtOnOrder,
p.dtExposureGroup,p.dtPlanogram,p.ProductHeight,
p.ProductWidth,p.ProductLength,p.dtPackageSize1,
p.productHeightUOMID,p.productWidthUOMID,p.productLengthUOMID,
pn.dtProductNameDescription1,pn.dtProductNameDescription2,
pv.VendorID,pr.ReferenceNumber
FROM ODS_Product p
   JOIN ODS_ProductName pn 
   ON pn.ProductID=p.ProductID 
join ODS_ProductName pn1 pn1.BusinessUnitId=p.BusinessUnitId
 JOIN ODS_ProductVendor pv 
ON pv.ProductID=p.ProductID 
JOIN ODS_ProductVendor  Pv1 pv1.BusinessUnitId=p.BusinessUnitId
LEFT JOIN ODS_dtProductReference pr 
where p.ProductID=# and p.BusinessUnitId=#

我不确定,但它可能会帮助你。

于 2015-10-29T09:42:47.873 回答
0

找到了解决方案。问题是 sql 驱动程序准备好的语句。由于某种原因,它无法解释“p.productId”,所以当我从 SQL 中删除所有别名时它起作用了(但我不知道为什么):

 SELECT ODS_Product.ProductID,ODS_Product.dtGTIN,ODS_Product.ProductWeight
 ,ODS_Product.dtPurchasePriceUnit,ODS_Product.dtItemGroupID,
ODS_Product.dtPromotionID,ODS_Product.IntroductionDate,
ODS_Product.dtOnOrder,ODS_Product.dtExposureGroup,ODS_Product.dtPlanogram,
ODS_Product.ProductHeight,ODS_Product.ProductWidth,
ODS_Product.ProductLength,ODS_Product.dtPackageSize1,
ODS_Product.productHeightUOMID,ODS_Product.productWidthUOMID,
ODS_Product.productLengthUOMID,ODS_ProductName.dtProductNameDescription1,
ODS_ProductName.dtProductNameDescription2,ODS_ProductVendor.VendorID,
ODS_dtProductReference.ReferenceNumber
FROM ODS_Product
JOIN ODS_ProductName ON ODS_ProductName.ProductID=ODS_Product.ProductID
 and ODS_ProductName.BusinessUnitId=ODS_Product.BusinessUnitId
JOIN ODS_ProductVendor ON ODS_ProductVendor.ProductID=ODS_Product.ProductID
 and ODS_ProductVendor.BusinessUnitId=ODS_Product.BusinessUnitId
LEFT JOIN ODS_dtProductReference ON         
ODS_dtProductReference.ProductID=ODS_Product.ProductID 
 and ODS_dtProductReference.BusinessUnitId=ODS_Product.BusinessUnitId 
 and ODS_dtProductReference.ReferenceID='SRII')
where ODS_Product.ProductID='2602_1487130'
    and ODS_Product.BusinessUnitId=6
于 2015-10-29T13:40:37.800 回答