Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 mySql 中有一个名为 order 的表。由于某些原因,我无法更改表的名称。我在执行查询时遇到问题,例如涉及此表的地方
SELECT email FROM user u, buyer b, order p;
我也尝试过这种方式 ,但我遇到了同样的错误
错误代码:1064 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 '"order" LIMIT 0, 1000' 附近使用正确的语法
任何想法?
backtick使用, ex转义表名
backtick
SELECT * FROM `order`