for example we have a table with the columns "id", "name", "type", "year".
My target output would be SELECT CONCAT(id, name, type, year) FROM table.
Is it possible to do this without knowing the columns, so I can use it with every table I want without analysing its columns first? Something like CONCAT(*)?
I hope you can help me.
Thank you very much.
Regards Wulf