vote up 3 vote down star
1

The original query looks like this (MySQL): select * from books where title like "%text%" or description like "%text%" order by date

Would it be possible to rewrite it (without unions or procedures), so that result will look like this: - list of books where title matches query ordered by date, followed by: - list of books where description matches query ordered by date

So basically just give a higher priority to matching titles over descriptions.

Thanks.

flag

51% accept rate
Why can't you use a union? – Tom Ritter Sep 19 '08 at 21:01

7 Answers

vote up 0 vote down
DECLARE @Books TABLE
(
    [ID] INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
    [Title] NVARCHAR(MAX) NOT NULL,
    [Description] NVARCHAR(MAX) NOT NULL,
    [Date] DATETIME NOT NULL
)

INSERT INTO @Books
SELECT 'War and Peace','A Russian Epic','2008-01-01' UNION
SELECT 'Dogs of War','Mercenary Stories','2006-01-01' UNION
SELECT 'World At Arms','A Story of World War Two','2007-01-01' UNION
SELECT 'The B Team','Street Wars','2005-01-01' 

SELECT * FROM
(
    SELECT *, CASE WHEN [Title] LIKE '%war%' THEN 1 WHEN [Description] LIKE '%war%' THEN 2 END AS Ord
    FROM @Books
    WHERE [Title] LIKE '%war%' OR [Description] LIKE '%war%'
) AS Derived
ORDER BY Ord ASC, [Date] ASC

I believe this gives you what you want, but due to the extra workload in the derived CASE statment, it may not have good performance.

link|flag
vote up 0 vote down

How about something like this...

select *  
from books  
where title like "%text%"  
or description like "%text%"  
order by case when title like "%text%" then 1 else 0 end desc, date
link|flag
vote up 0 vote down

You could use a case to sort by:

order by case when title like '%text%' then 0 else 1 end
link|flag
vote up 2 vote down

rjk's suggestion is the right way to go. Bear in mind, though, that this query (with or without a union) can't use indexes, so it's not going to scale well. You might want to check out MySQL's fulltext indexing, which will scale better, allow more sophisticated queries, and even help with result ranking.

link|flag
vote up 2 vote down
select * from books 
where title like "%text%" or description like "%text%" 
order by date, case when title like "%text%" then 0 else 1 end
link|flag
this will sort by date first - you should rearrange the order of the order by parts. – Rory Sep 19 '08 at 21:02
vote up 16 vote down

In sql server I would do the following:

select * from books 
where title like '%text%' or description like '%text%'
order by case when title like '%text%' then 1 else 2 end, date

I'm not sure if you can include columns in ORDER BY in mysql that aren't in the SELECT, but that's the principle I'd use. Otherwise, just include the derived column in the SELECT as well.

link|flag
vote up -2 vote down

The union command will help you. Something along these lines:

SELECT *, 1 as order from books where title like '%text%'
union
SELECT *, 2 as order from books where description like '%text%'
ORDER BY order, date
link|flag
This will give you duplicate rows if both the title and the description match. (Also it uses a union.) – Rory Sep 19 '08 at 21:01
It does use a union like you asked to avoid, but it is important to distinguish between union and union all. The union would not produce duplicate. I suspect this is why you are avoiding unions to begin with. – K Richard Sep 19 '08 at 21:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.