Rails模型中的Mysql字段关键字

时间:2013-10-25 07:10:46

标签: mysql ruby-on-rails

现在我有一个控制器:

class CommonController < ApplicationController
  def location
    @locations=Location.select(:key)
    render json: @locations
  end
end

我的数据库是mysqlkey是mysql关键字。

但是我的表juest有一个名为key

的文件

当我运行动作时。我收到错误:

Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key FROM `locations`' at line 1: SELECT key FROM `locations` 

那我该怎么办?

1 个答案:

答案 0 :(得分:0)

我明白了。就这样写:

@locations=Location.select('`key`')