다운로드 및 설치 후
경로 : C:\Program Files (x86)\H2\bin
배치파일 클릭 하면 콘솔창 열림.
cmd창 뜨는 것 실수로 끄지 않기
포트번호 앞에 편리하게 localhost로 바꿔적어줌.
요청하는대로 저 위치에 test폴더 생성 후
create 클릭
drop table if exists member CASCADE;
create table member
(
id bigint generated by default as identity,
name varchar(255),
primary key (id)
);