gpt4 book ai didi

SQL:在 LIKE 之前选择等于

转载 作者:行者123 更新时间:2023-12-03 16:52:06 24 4
gpt4 key购买 nike

我需要在 SQLite 数据库中查询匹配给定字符串或 LIKE query% 的项目。然而,它并不像

那么简单
SELECT id, type, number FROM roads WHERE number = '12' OR number LIKE '12%'

我需要所有 equal 匹配在 LIKE 匹配之前出现。我想象在某处有一个 AS 并通过它订购,但我不确定它是如何工作的。如果可能,我想避免进行两次查询。

最佳答案

SELECT id, type, number
FROM roads
WHERE number = '12' OR number LIKE '12%'
ORDER BY CASE WHEN number = '12' THEN 0 ELSE 1 END, number

关于SQL:在 LIKE 之前选择等于,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9509148/

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