我有一个 SQL 函数,它返回商品的最低和最高售价。我想做一个查询,获取其他 StockItem 列及其售价
像这样:
SELECT i.StockItemID ii,
i.Name,
i.Code,
pli.SellingPrice AS MinSellingPrice,
pli.StandardSellingPrice AS MaxSellingPrice,
i.WebDetailedDescription,
i.WebAdditionalInfo,
i.FeaturedItemDescription
FROM SC_StockItem AS i,
func_GetPrice(17, i.StockItemID, 5) pli
然而,这给出了一个错误:
消息 4104,级别 16,状态 1,第 12 行 无法绑定多部分标识符“i.StockItemID”。
知道我该怎么做吗?
提前致谢