Filtering - 1
Filtering - 1 ~10 mins
Prerequisite
    create table employees (id NUMBER primary key,name VARCHAR2(100) not null,salary NUMBER not null);
insert into employees (id,name,salary) values
(1, 'Ramesh',10000),
(2, 'Siva',8000),
(3, 'Naresh',70000);
Task 1: Search Employee with name 'Siva'
    select * from employees where name='Siva';
Task 2: Display Employee who gets salary greater than 7500
    select * from employees where salary > 7500;

Note: Comparison Operators - >,>=,<,<=, !=

Task 3: Display Employee who gets salary between 5000 and 15000
    select * from employees where salary > 5000 and salary < 15000;
    select * from employees where salary between  5000 AND 15000;