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

Jul 8, 2025

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