이전글 https://spring0691.tistory.com/59서브쿼리 연산자# 1개이상의 행을 반환하면 true, 아무것도 없으면 falseEXISTS (서브쿼리)select exists(select * from current_time); ㅡ> true# 서브쿼리에서 같은 행이 하나라도 있으면 true, 아니면 falseselect * from table where amount in (10,20,30); id | name | amount | | id | name | amount -----+------------+--------+ +-----+--------+-------- 1 | apple | 30 | | 1 | a..