Answers for "mysql combine two columns from same table"

2

mysql concatenate two columns into one

SELECT concat(first_column, ' ', second_column) from table_name
Posted by: Guest on February-22-2021

Code answers related to "mysql combine two columns from same table"

Browse Popular Code Answers by Language