作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 Rails 应用程序中,我有一个 SQL 查询,它使用 where 和 like 来搜索查询 (params[:q])。我如何更改它以便 query/:q 不能在行内的任何位置,但必须从它开始?这里的代码:
AccountNumber.where("account_number like?", "%#{params[:q]}%")
最佳答案
从字符串中删除前导 %
通配符。
AccountNumber.where("account_number like?", "#{params[:q]}%")
关于SQL Where 子句 'that begins with' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6833281/
我是一名优秀的程序员,十分优秀!