【发布时间】:2018-05-22 18:41:28
【问题描述】:
我在我的 ASP.NET 项目中作为字符串传递了以下查询:
SELECT creditorName, amount, interestRate, interestType, interestCalculationMethod, insertedDate, o.fullName AS owner, u.fullName AS dataInsertedBy FROM ((tbl_savings s) LEFT JOIN tbl_users o ON (ownerID = o.userID)) LEFT JOIN tbl_users u ON (dataEnteredByID = u.userID);
我收到以下错误:
+ $exception {"Join expression not supported."} System.Data.OleDb.OleDbException
我使用 MS Access 2016 作为数据库。
怎么了?
【问题讨论】: