我收到了类似这样的错误"其他信息:您的SQL语法错误;检查与您的MySQL服务器版本对应的手册,以便在#34;附近使用正确的语法。当我运行我的代码。我使用webapi
string query = "SELECT `theatredetails`.*,`location`.`LocationName,`moviemaster`.`MovieMasterId`,`moviemaster`.`MovieName`,`moviemaster`.`Image` FROM `theatredetails` INNER JOIN `location` ON `theatredetails`.`LocationId`=`location`.`LocationId` INNER JOIN `moviemaster` ON `moviemaster`.`TheatreDetailsId`=`theatredetails`.`TheatreDetailsId`";
我使用3个内部联接,我的查询是否有任何错误?
答案 0 :(得分:0)
你忘记了反击
`location`.`LocationName
^---here