목록공부 (85)
hara
Oracle Quiz1
[테이블 정보!] 기본적인 select문 문제와 답 1. 급여가 10000이거나 14000인 사원들의 사번, 이름(first_name), 급여를 검색하시오.-select employee_id 사번,first_name 이름, salary 급여 from employees where salary in(10000,14000) 2. first_name에 대소문자구별없이('e', 'E')를 포함하는 모든 사원을 검색하시오-select first_name from employees where first_name like '%e%' or first_name like '%E%'-select first_name from employees where first_name like '%'||upper('e')||'%' 3. f..
공부/DataBase
2017. 2. 21. 23:56