I have a table with 4 rows with DateTime values saved into.
The query:
SELECT row1, row2, row3, row4 FROM table;
shows this result:
+------------+------------+------------+------------+
| row1 | row2 | row3 | row4 |
+------------+------------+------------+------------+
|01.01.2014 |null |null |31.12.2018 |
|null |17.08.2015 |01.12.2050 |null |
|02.01.2010 |null |28.03.2067 |null |
+------------+------------+------------+------------+
But I want to combine and order these dates into one row like:
+------------+
| rows |
+------------+
|01.01.2014 |
|02.01.2010 |
|17.08.2015 |
|01.12.2050 |
|28.03.2067 |
|31.12.2018 |
+------------+
What query do I have to use to get the result I want?
Thanks in advance