Prepare for Data Analyst and MIS interviews with real questions asked in India — SQL, Power BI, Excel, case studies, and HR rounds explained simply.
Abhishek Raj
June 21, 202614 min read
Most interviews have 3–4 rounds:
This guide covers questions from each round with simple sample answers.
Simple answer: WHERE filters rows before grouping. HAVING filters after GROUP BY.
-- WHERE: filter individual orders
SELECT Region, SUM(Sales) AS Total
FROM Orders
WHERE OrderDate >= '2026-01-01'
GROUP BY Region;
-- HAVING: filter grouped results
SELECT Region, SUM(Sales) AS Total
FROM Orders
GROUP BY Region
HAVING SUM(Sales) > 100000;
Use LEFT JOIN when you need to find missing relationships (e.g. customers with no orders).
SELECT Email, COUNT(*) FROM Customers
GROUP BY Email HAVING COUNT(*) > 1;
A calculation across related rows without collapsing the result into one row.
Example: rank employees by salary within each department using RANK() OVER (PARTITION BY department ORDER BY salary DESC).
Use Import for most MIS dashboards under a few million rows.
Both lookup values. INDEX-MATCH is more flexible (lookup left or right, handles insert/delete better). In modern Excel, XLOOKUP is preferred.
Excel's tool to connect, clean, and refresh data from databases and files. Mention you use it to automate weekly MIS instead of manual copy-paste.
Use the structured approach:
Interviewers care about your thinking process, not a perfect answer.
STAR template:
Sample answer: "I schedule a 15-minute call to confirm the decision the stakeholder needs, list proposed KPIs, share a draft, and iterate before building the full dashboard."
| Day | Activity |
|---|---|
| Mon | Review SQL JOINs, GROUP BY, window functions |
| Tue | Practice 5 DAX measures |
| Wed | Rebuild one Power BI dashboard from scratch |
| Thu | Do one case study out loud |
| Fri | Prepare 3 STAR stories from your experience |
| Sat | Mock interview with a friend |
| Sun | Rest and review your portfolio link |
Indian Data Analyst interviews test practical skills — SQL, Excel, Power BI, and clear communication. Practice explaining your projects simply, and always connect technical work to business impact (time saved, faster decisions, fewer errors).
More to read
More from Interview and related topics.
Abhishek RajJune 28, 2026
New to data analytics? Learn what a Data Analyst actually does, skills you need, salary range in India, and how to start — explained in plain English.
Abhishek RajJune 20, 2026
Already working in MIS? Follow this step-by-step roadmap to transition into a Data Analyst role — skills, projects, timeline, and portfolio tips.
Abhishek RajJune 27, 2026
Testing
