Answers for "insert into using contant values and source table columns with sql"

SQL
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 into using contant values and source table columns with sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language