Postgresql function (1) 썸네일형 리스트형 Postgresql function 개발 및 예제 Postgresql pl/pgsql 을 이용하여 실제 프로젝트에서 쓰일 법한 function을 개발해 보자. ## 개발환경 Postgresql 9.4 pgAdmin 3 - 1.22.2 1. 사전준비 - CRUD를 수행할 테스트 테스트 테이블 생성 -- CRUD를 수행할 테스트 테이블 create table public.test_table( no integer not null primary key , title varchar(300) not null , create_date timestamp(0) not null , update_date timestamp(0) null ); -- 테스트 테이블 조회 select * from public.test_table; 2. INSERT Function 개발 테이블에 .. 이전 1 다음