Mysql
 sql >> Datenbank >  >> RDS >> Mysql

SQL:Wie bestelle ich nach einem Feld, wenn es nicht null ist, sonst verwende ich ein anderes Feld

Sie können COALESCE verwenden :

ORDER BY COALESCE(dtModified, dtPosted)

Eine weitere Option ist die Verwendung der MySQL-spezifischen Funktion IFNULL statt COALESCE .

Testen auf MySQL:

CREATE TABLE table1 (dtModified DATETIME NULL, dtPosted DATETIME NOT NULL);
INSERT INTO table1 (dtModified, dtPosted) VALUES
('2010-07-31 10:00:00', '2010-07-30 10:00:00'),
(NULL                 , '2010-07-31 09:00:00'),
('2010-07-31 08:00:00', '2010-07-30 10:00:00');

SELECT dtModified, dtPosted
FROM table1
ORDER BY COALESCE(dtModified, dtPosted)

Ergebnisse:

dtModified           dtPosted
2010-07-31 08:00:00  2010-07-30 10:00:00
NULL                 2010-07-31 09:00:00
2010-07-31 10:00:00  2010-07-30 10:00:00