Copy Data from One Table to Another Table in SQL Tamil || SQL Tutorial for Beginners ||SQL

Опубликовано: 28 Июль 2026
на канале: Ctrl+F
103
6

Copy Table:
INSERT INTO first_table_name [(column1, column2, ... columnN)]
SELECT column1, column2, ...columnN
FROM second_table_name



The SQL INSERT INTO SELECT Statement

The INSERT INTO SELECT statement copies data from one table and inserts it into another table. The INSERT INTO SELECT statement requires that the data types in source and target tables match. Note: The existing records in the target table are unaffected.