ruby-on-rails – 查询Rails中列不为零的记录

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 查询Rails中列不为零的记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
代码中:

<%@ hotelUser = HotelUser.find(cookies [:user_id2])%>

<%= debug @ orderLast = Order.where(:email => @ hotelUser.email,“order.hotel_user_id IS NOT NULL”).last%>

执行此代码后,我会收到语法错误.我想搜索hotel_user_id where hotel_user_id!= nil或empty?请告诉我正确的语法.

解决方法

Order.where(email: @hotelUser.email).where.not(hotel_user_id: nil)
原文链接:https://www.f2er.com/ruby/265772.html

猜你在找的Ruby相关文章