gpt4 book ai didi

ruby-on-rails - 查询以检查 ruby​​ on rails 中的整数值

转载 作者:数据小太阳 更新时间:2023-10-29 07:45:15 24 4
gpt4 key购买 nike

我想在 Rails 应用程序中执行此查询

   Video.where("category= 'film' AND grant = 1").order('created_at DESC').page(params[:page]).per_page(10)

此处 grant 存储一个整数值。

我得到以下错误

    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 'grant = 1) ORDER BY created_at DESC LIMIT 10 OFFSET 0' at line 1: SELECT  `videos`.* FROM `videos`  WHERE (category= 'film' AND grant = 1) ORDER BY created_at DESC LIMIT 10 OFFSET 0

提前致谢

最佳答案

问题出在拨款上。 GRANT 是 MySql 中的保留字。您应该在它们周围使用反引号。

Video.where("category= 'film' AND `grant` = 1").order('created_at DESC').page(params[:page]).per_page(10)

我猜会完成这项工作。引用Reserved Words

关于ruby-on-rails - 查询以检查 ruby​​ on rails 中的整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17718868/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com