Altimetrik interview question

1. Find second highest salary 2. Basic question related to SQL join 3. Python question to add two numbers.

Interview Answer

Anonymous

8 Jul 2025

select max(salary) from employee where salary < (select max(salary) from employee)