Hi,I'm still new to SQL and I can't seem to find out how to do this anywhere. How do I add several rows of data to an already existing table?For example, if my PeopleOLD table currently looks like this:ID Last First 43 Harris Jackie55 Harris John88 Harris Emily
and my PeopleNEW table looks like this:ID Last First 32 Smith May64 Smith Sam35 Smith Joe
What code do I need to make PeopleOLD look like this?:ID Last First 43 Harris Jackie55 Harris John88 Harris Emily32 Smith May64 Smith Sam35 Smith Joe
Thanks for your help.