본문 바로가기
Oracle

[ 오라클 ] 테이블 조건 조회

by 팔공산호랑이 2020. 5. 31.

select * from person where name='송중기';

select * from person where age >= 23;

select * from person where age >= 23 and height >= 170;

select * from person where age >= 23 or height >= 170;

 

'Oracle' 카테고리의 다른 글

[ 오라클 ] 아우터 조인  (0) 2020.05.31
[ 오라클 ] 데이터 오름차순, 내림차순 조회  (0) 2020.05.31
[ 오라클 ] 테이블 생성, 조회  (0) 2020.05.31