如何在laravel中按范围(As1-As10)检索记录?

发布于 2025-01-16 14:25:53 字数 184 浏览 1 评论 0原文

是否有可能以范围形式检索记录。例如,有一个表,其列为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2025-01-23 14:25:53

您可以使用此 where 之间运算符。

$data = DB::table('table_name')
           ->whereBetween('ref_numbers', ['A1', 'A10'])
           ->get();

或者

$data = DB::table('table_name')
           ->where('ref_numbers', '>', 'A1')
           ->where('ref_numbers', '<', 'A10')
           ->get();

您可以在这里阅读更多 https://laravel.com/docs/ 9.x/queries#additional-where-clauses

You can use this where between operator.

$data = DB::table('table_name')
           ->whereBetween('ref_numbers', ['A1', 'A10'])
           ->get();

or

$data = DB::table('table_name')
           ->where('ref_numbers', '>', 'A1')
           ->where('ref_numbers', '<', 'A10')
           ->get();

You can read here more https://laravel.com/docs/9.x/queries#additional-where-clauses

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文