use zerobase;
create table person
(
id int,
name varchar(16),
age int,
sex char
);
insert into tablename (col1, col2,..)
values (val1, val2, ...);
** data가 잘 들어갔는지 확인하자select * from person;
insert into tablename
values (val1, val2, ...)
select col1, col2
from tablename;
select *
from tablename;
select col1, col2
from tablename
where condition;
update tablename
set col1=val1, col2=col2, ...
where condition;
delete from tablename
where condition;