How to select the bigger date between 2 columns? – Mysql
I have a table 'processes' with the following columns : id date_creation date_lastrun For example I have the following entries: id;date_creation;date_lastrun 1;2022-01-01 00:00:00;2022-02-01 00:00:00 2;2022-03-01 00:00:00;NULL I want to select the element with the bigger date in MySQL I can…