What's the alternate to
select table_name.* as colAlias from table_name
I assume this used to work pre 5.5 MySQL.
SELECT CONCAT(col1,', ',col2,', ',col3) AS cols
FROM table_name ORDER BY cols;
or also
SELECT CONCAT(col1,' ',col2,' ',col3) AS cols
FROM table_name ORDER BY cols;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With