Hello everyone in SQL if am trying to union two tables in a new one , and am taking the columns names from these table which names its going to take for the new table and why ?
Code:
CREATE TABLE New AS
Select Phonenumber from Data
union
select PhoneNumber from INFO
Incorrect syntax near the keyword 'AS'