Sponsored By
















 

Where 절 사용하는 방법이다.

 

 

Q. TEMP 테이블을 이용해서 취미가 있는 사람 중 직급이 과장인 사람의 사번, 성명, 취미를 구하는 문장을 만들어보자.

 

 

A.

>

select emp_id,

emp_name,

hobby

from temp

where hobby is not null

and lev like '과장' ;

 

 

 



Sponsored By















+ Recent posts