Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
代替手段は何ですか
select table_name.* as colAlias from table_name
これは5.5以前のMySQLで機能していたと思います。
SELECT CONCAT(col1,', ',col2,', ',col3) AS cols FROM table_name ORDER BY cols;
またはまた
SELECT CONCAT(col1,' ',col2,' ',col3) AS cols FROM table_name ORDER BY cols;