0
how to to select concatenated ''city'' and ''state'' columns, represented with a new custom column named ''new_address''.
how to select concatenated ''city'' and ''state'' columns, represented with a new custom column named ''new_address''.
6 Antworten
+ 4
select concat(city,state) as new_adress from some_table
+ 1
SELECT CONCAT (city, ', ', state)
AS new_address
FROM customers;
+ 1
SELECT CONCAT (city, ', ', state)
AS new_address
FROM customers;
+ 1
select concat(city,state) as new_adress from some_table
+ 1
Thank You 1of3
+ 1
SELECT CONCAT (city, ', ', state)
AS new_address
FROM customers;