我收到类似这样的错误“其他信息:您的SQL语法有错误;请在与我的MySQL服务器版本相对应的手册中查找在我运行代码时在“附近使用正确的语法。Iam使用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个内部联接,查询是否有错误?
最佳答案
你忘了回头针
`location`.`LocationName
^---here
关于mysql - 我的mysql查询字符串错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33123920/