/*where : 조건절 == ifselect 값, 컬럼, 함수, from 테이블 where 비교연산자: > , = , !+ ,== , -> 같지 않다 ( ) 를 사용해 우선순위를 매길 수 있다 null 일때 == null, is null , null 이 아닐 때 == is not null not, and, or 을 사용할 수 있다 && , || 사용 할 수 없다 */ --'Julia' 와 'julia' 결과의 차이 : 대소문자 구분select first_name, last_name, salaryfrom employeeswhere first_name = 'Julia';select first_name, last_name, salaryfrom employeeswh..