Limit
Limit ~10 mins
Prerequisite
    create table employees (id int primary key,name varchar(100) not null,salary int not null);
insert into employees (id,name,salary) values
(1, 'Ramesh',10000),
(2, 'Siva',8000),
(3, 'Naresh',70000),
(4, 'Prabhu',55000),
(5, 'Dinesh',35000);
Task 1: Find the top 3 employees who gets highest salary
    select * from employees order by salary desc limit 3;