oracle 9i 라고 기본 활용서가 있는데 거기에 있는 1장 문제를 풀어보쟈~~
select * from departments;
select employee_id, last_name, job_id, hire_date startdate
from employees;
select distinct job_id
from employees;
select employee_id "Emp #", last_name Employee, job_id job, hire_date
from employees;
select last_name || ' , ' || job_id "Employee and Title"
from employees;
select employee_id || ' , ' || first_name || ' , ' || last_name || ' , ' ||email
|| ' , ' || phone_number || ' , ' || hire_date || ' , ' || job_id || ' , ' ||
salary || ' , ' || commission_pct || ' , ' || manager_id || ' , ' || department_id
as "the_output"
from employees;
진짜 타이핑을 망설이게 했던 문제 12번 진짜로 이렇게 다 타이핑 쳐야 하나 좀 어이가 없었다. 혹시 더 간단한 방법 아는 분 있으면 제발 알려주세여....
'SQL' 카테고리의 다른 글
SQL 문법 _ 오라클 9i introduction 2장 문제 (0) | 2023.03.19 |
---|---|
SQL 문법 _ ③ order by (0) | 2023.03.19 |
SQL 문법 _ ② where (0) | 2023.03.19 |
SQL 문법 _ ① select (1) | 2023.03.14 |
RDBMS 관계형 데이터베이스 관리 시스템 (0) | 2023.03.14 |