300x250 DataBase/PosegreSQL12 Database / PostgreSQL JOIN 사용하기. 두 개 이상의 테이블을 결합하여 여러 행을 검색하는 것입니다. SELECT * FROM weather JOIN cities ON (weather.city = cities.name); SELECT * FROM weather LEFT OUTER JOIN cities ON (weather.city = cities.name); 2019. 7. 15. Database / PostgreSQL 현재 사용자 / 현재 날짜 / 현재 시간 / 타임스탬프 구하기. SELECT CURRENT_USER, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP; 2019. 7. 14. Database / PostgreSQL 이번달의 첫번째 날과 마지막 날 구하기. 이번달의 첫번째 날과 마지막 날 구하기 입니다. SELECT cast(date_trunc('month',current_date) as date) as firstday, (date_trunc('MONTH', current_date) + INTERVAL '1 MONTH - 1 day')::date lastday; 2019. 7. 14. Database / PostgreSQL 문자열 결합하기. SELECT (last_name || '_' || first_name) AS full_name, last_name, first_name FROM employees 2019. 7. 14. 이전 1 2 3 다음 300x250