SQL Queries
drop table studios
create table studios (id char(5), name char(20), city char(20), state char(2))
insert into studios (id, name, city, state) values ('5', 'big picture', 'Culver City', 'CA')
select * from studios
student data
| ID |
NAME |
CITY |
STATE |
| 5 |
big picture |
Culver City |
CA |