https://www.tutorialspoint.com/postgresql/postgresql_having_clause.htm PostgreSQL - LIKE 절 1. 이 테이블에서 봉급이 65000이상인 것의 나이보다 많은 것의 모든 정보를 가져와라 postgres-# select * from company where age > (select age from company where salary>65000); 2. age에 2가 들어가는 데이터들의 모든 정보 ------------------------------------------------------------------------------------------------------------------------------------------..