This repository contains a comprehensive collection of Top SQL Interview Questions, carefully designed to help you prepare and excel in SQL interviews. All queries have been authored by Ankush Raj (or Ankush Raj Mahe Yam).
For a downloadable PDF of these queries, visit my LinkedIn page via the link provided below.
The Questions are organized into folders, each focusing on specific SQL topics and concepts. Future Questions will follow the same structure and will be added incrementally.
SQL-Top-Interview-Questions/
├── SubQuery.sql
└── (Future Questions will be added in separate file_names)
/*
DISPLAY ALL THE EMPLOYEES WHOSE DEPARTMENT NAMES ENDING 'S'.
*/
SELECT *
FROM EMP
WHERE DEPTNO IN (SELECT DEPTNO
FROM DEPT
WHERE DNAME LIKE '%S');
1️⃣ Subqueries
- Nested Queries, Single-row, and Multi-row Subqueries.
. . . . . Future Questions will be added in same ways....
-
Clone the repository:
git clone https://github.com/AnkushRajMaheYam/SQL-Top-Interview-Questions.git
-
Execute the
.sql
file in your preferred database environment (e.g., MySQL, Oracle, or SQL Server).
Check out the full pdf that inspired these questions:
👉 SQL-Top-Interview-Questions by Ankush Raj Mahe Yam
Hi, I’m Ankush Raj or Ankush Raj Mahe Yam (ARMY), an aspiring software developer currently pursuing Java Full Stack Development. I’m passionate about coding and enjoy sharing my learning journey to help others grow.
🌟 Connect with me:
- Google Search: Ankush Raj Mahe Yam
- LinkedIn: Ankush Raj
- GitHub: Ankush Raj
- Leetcode: Ankush Raj
- Instagram: @AnkushRajaMaheYam
- Facebook: Ankush Raj
- Fiverr: @AnkushRajMaheYa
- Upwork: Ankush Raj
They are intended purely for educational purposes.
License:
This repository is licensed under the MIT License.
Special thanks to the mentor(Akash Sir) and faculty at J-Spider Software Training Institute (Noida Branch) for providing excellent guidance and support throughout the course.
Feel free to explore, practice, and enhance your SQL skills! 😊
Happy practicing SQL! 🎉