컴터/pgsql (11) 썸네일형 리스트형 날짜 쿼리(2주후 까지 찾기) select a.*, b.name as b_name from 테이블 as a left join member as b on a.input_id=b.id where a.delete='n' and a.cat='company' and a.input_id='아이디' and (case when length(a.c_birth)=10 then a.c_birth::text::date between current_date and (current_date + '2 week'::interval)::date when a.c_birth is null then false else false end ) order by a.reg_date desc limit 20 offset 0 c_birth 을 varchar 형으로 놓아서 date.. mysql_insert_id 와 같은 postgresql 의.. 해당 필드의 시퀀스 명을 볼수 있는데 , 테이블명_필드명_seq 라는 이름. select currval('시퀀스명'); ////현재 값. select nextval('시퀀스명'); //다음값 pgsql 유용한 쿼리.. 출처 ; http://database.sarang.net/?inc=read&aid=3547&criteria=pgsql&subcrit=&id=&limit=20&keyword=unix&page=7 첨부파일: pgsql_tip.txt (28,543bytes) 1. SQL 문을 이용하여 내가 만든 table(relation)의 field(attribute) 이름과 그 자료형을 알고자 할때... SELECT pg_attribute.attname, pg_type.typname FROM pg_class, pg_attribute, pg_type WHERE pg_class.relname = '%s' AND pg_attribute.attnum > 0 AND pg_attribute.attrelid = pg_class.oid.. 이전 1 2 다음