如何在laravel中按范围(As1-As10)检索记录?
是否有可能以范围形式检索记录。例如,有一个表,其列为 ref_numbers。ref_numbers 的示例值为 A1,A2,A3,A4....AB1,AB2,AB3,AB4... 我想检索特定范围起始值和结束值的记录。例如本例(A1-A2,AB1-AB4) 我怎样才能实现这一目标,在 laravel 中使用 eloquent 或查询构建器或原始查询?
is there any possibility to retrieve records as a range.For an example there is a table with column as ref_numbers.Sample values for the ref_numbers are A1,A2,A3,A4....AB1,AB2,AB3,AB4...
I want to retrieve the records of specific range starting value and end value.Such as in this case (A1-A2,AB1-AB4)
How can i achieve this ,Using eloquent or query builder or Raw queries in laravel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此 where 之间运算符。
或者
您可以在这里阅读更多 https://laravel.com/docs/ 9.x/queries#additional-where-clauses
You can use this where between operator.
or
You can read here more https://laravel.com/docs/9.x/queries#additional-where-clauses