非常实用的查询需求,这样的SQL 怎么写??

Book表结构:book(id(int,key),title(varchar(50)),content(varchar(500)))
要求查询:title或content中包含 字符串'china'的记录集合,并要求符合title的记录集排在前面,符合content条件的记录排在后面。

慕娘9325324
浏览 339回答 2
2回答

隔江千里

select * from book where title like '%china%'unionselect * from book where content like '%china%'

杨魅力

select * from book where charindex('china',title)>0union allselect * from book where charindex('china',content)>0
打开App,查看更多内容
随时随地看视频慕课网APP