1

这是一个有效的 SQL 语句吗

select title
from table
order by case when title like "%string%" then 0 else 1 end asc

如果我使用title = "string"我会得到有效的结果。如何更改它以使其接受 %string%

4

1 回答 1

1
select title
from table
order by case when title regexp "string" then 0 else 1 end asc;

我不是说^string因为你在寻找%string%.

于 2012-04-17T04:10:59.670 回答