Oracle Day - 4 - Select Statements
Oracle Day - 4 - Select Statements
Select statements:
===============
--column alias
-- column concatenation
-- column calculation
-- unique department_id
-- where clause
select * from employees where salary not between 5000 and 7000;
select * from employees where first_name like 'A%' and salary like '%200';