Reputation: 21705
i want a simple example of if clause in mysql. i don't want to consider else case,only if clause
Upvotes: 3
Views: 1026
Reputation: 1146
ex:
SELECT *,
if (`date_last` IS NULL,prev_date,last_date) as date
FROM `table_name`
WHERE `id` = 2
ORDER BY `date` DESC
Upvotes: 3