[데이터베이스 테이블 생성] - 메모리가 아닌 DB에 데이터를 보관하는 방법 drop table if exists item CASCADE; create table item ( id bigint generated by default as identity, item_name varchar(10), price integer, quantity integer, primary key (id) ); insert into item(item_name, price, quantity) values ('ItemTest', 100, 10)