00:01
Hello, welcome to this lesson.
00:02
In this lesson, we have two similar tables.
00:04
We have party that has id and name.
00:07
The id is integer and the name is a varchar.
00:10
We have party 2 that is having an id as an integer and the name is a varchar.
00:16
So let's see what we have in the tables.
00:20
The ultimate goal is to copy all the entries from party 1 to party 2.
00:26
So let me see if there is a select all from party.
00:33
So if i do this, i have these entries in party.
00:38
But let me check what i have in party 2.
00:43
So i have nothing in party 2 for now.
00:47
Alright, so the way i am going to get the entries from party to party 2 is to do it this way.
00:55
So i am going to do insert into.
00:59
So here, the party 2 is the table that i want to insert to.
01:04
And now, i want to insert it from party 1...