Answers for "insert values into new column existing table"

SQL
0

Add a new column into table

ALTER TABLE table ADD [COLUMN] column_name;
Posted by: Guest on April-28-2021
0

insert into using contant values and source table columns with sql

INSERT INTO table1(user_uuid, login_id)
SELECT users_uuid, '1234' FROM table2 WHERE first_name LIKE 'ortal';
Posted by: Guest on October-12-2021

Code answers related to "insert values into new column existing table"

Code answers related to "SQL"

Browse Popular Code Answers by Language