Can we Combine two column in single column while create table?

Forums SQLCan we Combine two column in single column while create table?
Staff asked 3 years ago

Answers (1)

Add Answer
Umang Ramani Marked As Accepted
Staff answered 3 years ago

yes, you can combine two-column while creating the table

use

CONCAT(c.FIRSTNAME, ',', c.LASTNAME) AS FIRSTNAME

this will work when you creating a temp table using insert into tamp table 

Subscribe

Select Categories