[데이터베이스 테이블 생성] - 메모리가 아닌 DB에 데이터를 보관하는 방법
<item테이블 생성>
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)
'Spring 강의 > DB' 카테고리의 다른 글
[스프링 DB 1편] - (3) 트랜잭션 (0) | 2022.04.20 |
---|---|
[스프링 DB 1편] - (2) 커넥션풀과 데이터소스 (0) | 2022.04.20 |
[스프링 DB 1편] - (1) JDBC 이해 (0) | 2022.04.18 |