데이터베이스 (1) 리스트형 [파이썬(Python)] SQL -입력 : insert into [table]([field]) values('입력할 값') insert into contract(name, phone) values('안중근', '010-2222-3333') ======================================================================================== -전체값을 조회할 때: select [field] from [table] select name, phone from contract -원하는 값만 조회할 때: select [field] from [table] where [filed] = '원하는 값' select name, phone from contract where name = '안중근' .. < 1 >