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.
我有一个名为post/zip_code. 如果我尝试将其放入这样的 SQL 查询中:
post/zip_code
SELECT post/zip_code
它不会读取post/zip_code为一个字符串。如何引用名称?
SELECT `post/zip_code`
将列名用反引号括起来。
根据模式对象名称的 MySql 文档:
标识符引号字符是反引号(“`”):
文档