简体   繁体   中英

MySQL - Sort on a calculated value based on two dates

I have the following problem that needs to be solved in a MySQL query:

Fields
info - textfield
date1 - a date field
date2 - a date field
offset1 - a text field with a number in the first two positions, example "10-High"
offset2 - a text field with a number in the first two positions, example "10-High"

I need to sort the records by the calculated "sortvalue" based on the current date (today):

If today<date1 then sortvalue=offset1*10+offset2*5-1000
else if today>=date2 then sortvalue=offset1*10+offset2*5+1000
else sortvalue=offset1*10+offset2*5

I have quite good understanding of basic SQL with joins etc, but this I am not even sure if its possible...if it helps I could perhaps live with a single formula giving the same sort of effect as the IFs do....ie. before date1 = low value, after date2 = high value...

Rgds PM

If you add your custom sort value to the select list then you can directly use it in the ORDER BY clause. Something like:

SELECT  field1, field2, fieldn, 
    IF(today < @date1, offset1 * 10 + offset2 * 5 - 1000, 
        IF(today >= @date2, offset1 * 10 + offset2 * 5 + 1000, 
            offset1 * 10 + offset2 * 5
        )
    ) AS sortvalue
ORDER BY sortvalue;

Use:

         ...
    FROM FIELDS t
ORDER BY CASE
           WHEN NOW() < t.date1 THEN CAST(LEFT(offset1, 2) AS INT) * 10 + CAST(LEFT(offset2, 2) AS INT) * 5 - 1000
           WHEN NOW() >= t.date2 THEN CAST(LEFT(offset1, 2) AS INT) * 10 + CAST(LEFT(offset2, 2) * 5 + 1000
           ELSE offset1 * 10 + offset2 * 5
         END

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM