Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

select

lastName
from employee
where department = 3

insert into people values ('Herman', 'Adkins', 'DarkSlateGrey') (Herman, Adkins, DarkSlateGrey) insert into people values ('Alberto', 'Aguilar', NULL) insert into people values ('Lawrence', 'Aguirre', DEFAULT)

update People set [favorite color] = 'gray'


where [first name]='Sara' and [last name] = 'Abbott' where [favorite color] = 'Bisque'

delete People
where[favorite color] = 'gray' where [first name]='Sara' and [last name] = 'Abbott'

You might also like