Skip to content

Instantly share code, notes, and snippets.

View farook8090's full-sized avatar
🏠
Working from home

Farook Mohammad farook8090

🏠
Working from home
View GitHub Profile
@farook8090
farook8090 / MysqlInterviewQuestions.md
Created April 21, 2026 10:11 — forked from maulikrajput/MysqlInterviewQuestions.md
Top 25 SQL Questions to Crack Any SQL Interview

⭐️📚Top 25 SQL questions to crack any SQL interviews

1 Write a query to find the second highest salary in an employee table.

SELECT DISTINCT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 1;

2 Fetch all employees whose names contain the letter “a” exactly twice.