employer cover photo

Cyber Infrastructure (CIS)

Is this your company?

Cyber Infrastructure (CIS) interview question

Get the last thee max salaried person from table via sql.

Interview Answers

Anonymous

5 Sept 2016

Just call select query with order by salary with 3 rows limit.

10

Anonymous

12 Dec 2018

select top 3 salary from employee order by salary desc

2

Anonymous

6 Jan 2019

"select sal from employ order by sal dec limit 3;"

1