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.
我正在尝试对 varchar 列进行非常简单的排序,但出现语法错误。用 PHP 和 phpmyadmin 测试。
这是查询:
SELECT * FROM cards_available_properties ORDER BY option
这是错误:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的 'option LIMIT 0, 30' 附近使用正确的语法
OPTION是保留关键字。用反引号逃脱它。
OPTION
SELECT * FROM cards_available_properties ORDER BY `option`