这是一个有效的 SQL 语句吗
select title
from table
order by case when title like "%string%" then 0 else 1 end asc
如果我使用title = "string"
我会得到有效的结果。如何更改它以使其接受 %string%
这是一个有效的 SQL 语句吗
select title
from table
order by case when title like "%string%" then 0 else 1 end asc
如果我使用title = "string"
我会得到有效的结果。如何更改它以使其接受 %string%