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.
我有一个ORM名为“key”的表。'key' 是 MySQL 关键字,所以我不能只选择它SELECT * FROM key;。
ORM
SELECT * FROM key;
如何在 MySQL 中从名为“key”的表中执行选择?
尝试使用反引号 ` 转义您的表名
SELECT * FROM `key`
这会让你的数据库明白key是一张表
key
你可以做
select * from [key]