Pario TechnoBlob
About
Posts
Tag: sql
Howto combine two columns into one in mysql
This is how you can combine (or concatenate or merge) data from two table columns into one column using a mysql SQL query. SELECT CONCAT(firstname,lastname) AS 'name' FROM...