Optum_Data_Analyst_Cheatsheet
Optum_Data_Analyst_Cheatsheet
Q: What is the difference between INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN?
A: INNER JOIN returns matching rows between tables. LEFT JOIN returns all rows from the left table
and matching rows from the right. RIGHT JOIN is vice versa. FULL OUTER JOIN returns all rows when
there is a match in either table.
Q: What are window functions?
A: They allow performing calculations across rows related to the current row, like RANK(),
ROW_NUMBER(), LEAD(), and LAG(). Useful for analytics without grouping data.
Power BI
General Interview