본문 바로가기
DataBase

[postgreSQL][데이터 필터링]WHERE절

by 바까 2021. 9. 13.
반응형
--1)WHERE절
--집합을 가져올 때 어떤 집합을 가져올 것인지에 대한 조건을 설정하는 절
--(1)WHERE절 문법
--SELECT 
--	COLUMN_1,
--	COLUMN_2,
--	중략...
--FROM 
--	TABLE_NAME
--WHERE
--	<조건>; 		--어떤 집합을 자겨올것인지에 대한 조건을 준다.

--연산자
-- =, >, <, >=, <=, <>, !=, AND, OR

--(2)조건 한개
select 
	LAST_NAME,--3
	FIRST_NAME
from	
	customer --1
where 
	FIRST_NAME = 'Jamie';--2
	

--(3)조건 두개
select 
	LAST_NAME,--3
	FIRST_NAME
from	
	customer--1
where 
	FIRST_NAME = 'Jamie'--2
	and last_name = 'Rice';

select
	customer_id,
	amount,
	payment_date
from	
	payment
where 
	   amount <= 1  --1이하
	or amount >=8; --8이상
반응형

댓글