Computer scienceFundamentalsSQL and DatabasesBasics SQLData Modification Language

Inserting selected rows

Only names

Report a typo

Copy only the names of developers from the table developers with columns name VARCHAR(20), surname VARCHAR(15) and position VARCHAR(40):

name surname position
Tamara Chavez middle developer
Nikolay Zimin junior developer

to the table employees with columns last_name VARCHAR(20), first_name VARCHAR(20) and department VARCHAR(40):

last_name first_name department
Chris Tomas HR

You should copy data from surname to last_name and from name to first_name.

Write an SQL statement





___

Create a free account to access the full topic