gpt4 book ai didi

c# - 在 ASP.NET 中使用 where 子句和 join

转载 作者:行者123 更新时间:2023-11-30 21:51:44 24 4
gpt4 key购买 nike

我收到语法错误,在 C# 中使用 join 时遇到问题?这是我的代码:

DataTable dtProducts = system.GetDataTable ("SELECT p.*, c.CategoryName, sc.CategoryName as SubCategoryName
FROM TBLPRODUCTS p
LEFT JOIN TBLCATEGORIES c ON p.CategoryId = c.CategoryId
LEFT JOIN TBLCATEGORIES sc ON c.SubCategoryId = sc.CateogryId
WHERE p.ProductID == ProductID");

最佳答案

我认为你应该只使用一次等号

where p.ProductID == ProductID

改为

where p.ProductID = ProductID

同时删除第二个

关于c# - 在 ASP.NET 中使用 where 子句和 join,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35310902/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com