I need to concat all columns in a string of a row. Something like this can be possible?
SELECT CONCAT_WS(\';\', *) FROM db.table
Table: