gpt4 book ai didi

mysql - 按 Eloquent 最佳匹配排序

转载 作者:行者123 更新时间:2023-11-29 07:20:29 26 4
gpt4 key购买 nike

我从 Eloquent 查询中得到了一些结果,我想按最佳匹配对它们进行排序。我怎样才能在 laravel Eloquent 地做到这一点?

在这里我找到了一些SQL中的解决方案,但我无法在 Eloquent 构建器中使用它。

    SELECT TOP 5 * 
FROM Products
WHERE ProductCode LIKE '%200%'
ORDER BY CHARINDEX('200', ProductCode, 1), ProductCode

https://bytutorial.com/blogs/tsql/how-to-order-the-sql-query-result-by-best-match-keyword-search

最佳答案

是的,如建议的那样,您可以使用 orderByRaw() 这样您的查询将转换为:

$result = Product::where("ProductCode", "LIKE", '%200%')
->orderByRaw('CHARINDEX('200', ProductCode, 1) DESC, ProductCode ASC')
->get();

在这里,假设表 products 的模型名称是 Product

关于mysql - 按 Eloquent 最佳匹配排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56573629/

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