5โฃ frequently Asked SQL Interview Questions with Answers in data analyst interviews
๐1. Write a SQL query to find the average purchase amount for each customer. Assume you have two tables: Customers (CustomerID, Name) and Orders (OrderID, CustomerID, Amount).
๐2. Write a query to find the employee with the minimum salary in each department from a table Employees with columns EmployeeID, Name, DepartmentID, and Salary.
๐3. Write a SQL query to find all products that have never been sold. Assume you have a table Products (ProductID, ProductName) and a table Sales (SaleID, ProductID, Quantity).
๐4. Given a table Orders with columns OrderID, CustomerID, OrderDate, and a table OrderItems with columns OrderID, ItemID, Quantity, write a query to find the customer with the highest total order quantity.
;
๐5. Write a SQL query to find the earliest order date for each customer from a table Orders (OrderID, CustomerID, OrderDate).
Hope it helps :)
๐1. Write a SQL query to find the average purchase amount for each customer. Assume you have two tables: Customers (CustomerID, Name) and Orders (OrderID, CustomerID, Amount).
SELECT c.CustomerID, c. Name, AVG(o.Amount) AS AveragePurchase
FROM Customers c
JOIN Orders o ON c.CustomerID = o.CustomerID
GROUP BY c.CustomerID, c. Name;
๐2. Write a query to find the employee with the minimum salary in each department from a table Employees with columns EmployeeID, Name, DepartmentID, and Salary.
SELECT e1.DepartmentID, e1.EmployeeID, e1 .Name, e1.Salary
FROM Employees e1
WHERE Salary = (SELECT MIN(Salary) FROM Employees e2 WHERE e2.DepartmentID = e1.DepartmentID);
๐3. Write a SQL query to find all products that have never been sold. Assume you have a table Products (ProductID, ProductName) and a table Sales (SaleID, ProductID, Quantity).
SELECT p.ProductID, p.ProductName
FROM Products p
LEFT JOIN Sales s ON p.ProductID = s.ProductID
WHERE s.ProductID IS NULL;
๐4. Given a table Orders with columns OrderID, CustomerID, OrderDate, and a table OrderItems with columns OrderID, ItemID, Quantity, write a query to find the customer with the highest total order quantity.
SELECT o.CustomerID, SUM(oi.Quantity) AS TotalQuantity
FROM Orders o
JOIN OrderItems oi ON o.OrderID = oi.OrderID
GROUP BY o.CustomerID
ORDER BY TotalQuantity DESC
LIMIT 1
;
๐5. Write a SQL query to find the earliest order date for each customer from a table Orders (OrderID, CustomerID, OrderDate).
SELECT CustomerID, MIN(OrderDate) AS EarliestOrderDate
FROM Orders
GROUP BY CustomerID
Hope it helps :)
โค2
Forwarded from AI Prompts | ChatGPT | Google Gemini | Claude
๐ฑ ๐๐ฟ๐ฒ๐ฒ ๐๐ผ๐ผ๐ด๐น๐ฒ ๐๐ ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐๐ผ ๐๐ถ๐ฐ๐ธ๐๐๐ฎ๐ฟ๐ ๐ฌ๐ผ๐๐ฟ ๐๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ถ๐ฎ๐น ๐๐ป๐๐ฒ๐น๐น๐ถ๐ด๐ฒ๐ป๐ฐ๐ฒ ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ๐
๐ You donโt need to break the bank to break into AI!๐ชฉ
If youโve been searching for beginner-friendly, certified AI learningโGoogle Cloud has you covered๐ค๐จโ๐ป
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3SZQRIU
๐All taught by industry-leading instructorsโ ๏ธ
๐ You donโt need to break the bank to break into AI!๐ชฉ
If youโve been searching for beginner-friendly, certified AI learningโGoogle Cloud has you covered๐ค๐จโ๐ป
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3SZQRIU
๐All taught by industry-leading instructorsโ ๏ธ
โค1
Forwarded from AI Prompts | ChatGPT | Google Gemini | Claude
๐ง๐ผ๐ฝ ๐ฑ ๐๐ฟ๐ฒ๐ฒ ๐๐ฎ๐ด๐ด๐น๐ฒ ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐๐ถ๐๐ต ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป๐ ๐๐ผ ๐๐๐บ๐ฝ๐๐๐ฎ๐ฟ๐ ๐ฌ๐ผ๐๐ฟ ๐๐ฎ๐๐ฎ ๐ฆ๐ฐ๐ถ๐ฒ๐ป๐ฐ๐ฒ ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ๐
Want to break into Data Science but not sure where to start?๐
These free Kaggle micro-courses are the perfect launchpad โ beginner-friendly, self-paced, and yes, they come with certifications!๐จโ๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4l164FN
No subscription. No hidden fees. Just pure learning from a trusted platformโ ๏ธ
Want to break into Data Science but not sure where to start?๐
These free Kaggle micro-courses are the perfect launchpad โ beginner-friendly, self-paced, and yes, they come with certifications!๐จโ๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4l164FN
No subscription. No hidden fees. Just pure learning from a trusted platformโ ๏ธ
Forwarded from AI Prompts | ChatGPT | Google Gemini | Claude
๐ฑ ๐๐ฟ๐ฒ๐ฒ ๐ ๐ถ๐ฐ๐ฟ๐ผ๐๐ผ๐ณ๐ + ๐๐ถ๐ป๐ธ๐ฒ๐ฑ๐๐ป ๐๐ฎ๐ฟ๐ฒ๐ฒ๐ฟ ๐๐๐๐ฒ๐ป๐๐ถ๐ฎ๐น ๐๐ฒ๐ฟ๐๐ถ๐ณ๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป๐ ๐๐ผ ๐๐ผ๐ผ๐๐ ๐ฌ๐ผ๐๐ฟ ๐ฅ๐ฒ๐๐๐บ๐ฒ๐
Ready to upgrade your career without spending a dime?โจ๏ธ
From Generative AI to Project Management, get trained by global tech leaders and earn certificates that carry real value on your resume and LinkedIn profile!๐ฒ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/469RCGK
Designed to equip you with in-demand skills and industry-recognised certifications๐โ ๏ธ
Ready to upgrade your career without spending a dime?โจ๏ธ
From Generative AI to Project Management, get trained by global tech leaders and earn certificates that carry real value on your resume and LinkedIn profile!๐ฒ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/469RCGK
Designed to equip you with in-demand skills and industry-recognised certifications๐โ ๏ธ
๐ฐ C++ Roadmap for Beginners 2025
โโโ ๐ง Introduction to C++ & How It Works
โโโ ๐งฐ Setting Up Environment (IDE, Compiler)
โโโ ๐ Basic Syntax & Structure
โโโ ๐ข Variables, Data Types & Constants
โโโ โ Operators (Arithmetic, Relational, Logical, Bitwise)
โโโ ๐ Flow Control (if, else, switch)
โโโ ๐ Loops (for, while, do...while)
โโโ ๐งฉ Functions (Declaration, Definition, Recursion)
โโโ ๐ฆ Arrays, Strings & Vectors
โโโ ๐งฑ Pointers & References
โโโ ๐งฎ Dynamic Memory Allocation (new, delete)
โโโ ๐ Structures & Unions
โโโ ๐ Object-Oriented Programming (Classes, Objects, Inheritance, Polymorphism)
โโโ ๐ File Handling in C++
โโโ โ ๏ธ Exception Handling
โโโ ๐ง STL (Standard Template Library - vector, map, set, etc.)
โโโ ๐งช Mini Projects (Bank System, Student Record, etc.)
Like for the detailed explanation โค๏ธ
#c #programming
โโโ ๐ง Introduction to C++ & How It Works
โโโ ๐งฐ Setting Up Environment (IDE, Compiler)
โโโ ๐ Basic Syntax & Structure
โโโ ๐ข Variables, Data Types & Constants
โโโ โ Operators (Arithmetic, Relational, Logical, Bitwise)
โโโ ๐ Flow Control (if, else, switch)
โโโ ๐ Loops (for, while, do...while)
โโโ ๐งฉ Functions (Declaration, Definition, Recursion)
โโโ ๐ฆ Arrays, Strings & Vectors
โโโ ๐งฑ Pointers & References
โโโ ๐งฎ Dynamic Memory Allocation (new, delete)
โโโ ๐ Structures & Unions
โโโ ๐ Object-Oriented Programming (Classes, Objects, Inheritance, Polymorphism)
โโโ ๐ File Handling in C++
โโโ โ ๏ธ Exception Handling
โโโ ๐ง STL (Standard Template Library - vector, map, set, etc.)
โโโ ๐งช Mini Projects (Bank System, Student Record, etc.)
Like for the detailed explanation โค๏ธ
#c #programming
โค4
Forwarded from AI Prompts | ChatGPT | Google Gemini | Claude
๐ฐ ๐๐ฅ๐๐ ๐๐ฎ๐ฟ๐๐ฎ๐ฟ๐ฑ ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐ณ๐ผ๐ฟ ๐๐ฒ๐ด๐ถ๐ป๐ป๐ฒ๐ฟ๐ ๐ถ๐ป ๐ง๐ฒ๐ฐ๐ต (๐ก๐ผ ๐๐
๐ฝ๐ฒ๐ฟ๐ถ๐ฒ๐ป๐ฐ๐ฒ ๐ก๐ฒ๐ฒ๐ฑ๐ฒ๐ฑ!)๐
Dreaming of learning from Harvard โ without spending a rupee?๐ฐ
Youโre in luck! These 4 beginner-friendly courses from Harvard University are completely free, self-paced, & beginner-approved๐จโ๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/44pDCYd
Taught by world-class professors!โ ๏ธ
Dreaming of learning from Harvard โ without spending a rupee?๐ฐ
Youโre in luck! These 4 beginner-friendly courses from Harvard University are completely free, self-paced, & beginner-approved๐จโ๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/44pDCYd
Taught by world-class professors!โ ๏ธ
โค3
We're Hiring: Data Scientist at RBL Bank!
Are you passionate about turning data into insights and impact? We're on the lookout for a Data Scientist who brings hands-on experience in Python, SQL, and Tableau to join our dynamic and fast-growing analytics team.
What Youโll Be Doing:
Translating complex business problems into data-driven solutions
Creating insightful dashboards, reports, and machine learning models
Collaborating closely with cross-functional teams to enable smarter decisions
What Weโre Looking For:
Proficiency in Python (Pandas, scikit-learn, etc.)
Strong command over SQL for data extraction and transformation
Experience with Tableau or any other BI tools for visual storytelling
If this sounds like you โ or someone you know โ feel free to DM or send your resume to amit.singh8@rblbank.com.
Are you passionate about turning data into insights and impact? We're on the lookout for a Data Scientist who brings hands-on experience in Python, SQL, and Tableau to join our dynamic and fast-growing analytics team.
What Youโll Be Doing:
Translating complex business problems into data-driven solutions
Creating insightful dashboards, reports, and machine learning models
Collaborating closely with cross-functional teams to enable smarter decisions
What Weโre Looking For:
Proficiency in Python (Pandas, scikit-learn, etc.)
Strong command over SQL for data extraction and transformation
Experience with Tableau or any other BI tools for visual storytelling
If this sounds like you โ or someone you know โ feel free to DM or send your resume to amit.singh8@rblbank.com.
โค2
๐๐ฑ๐๐ข๐ญ๐ข๐ง๐ ๐๐ฉ๐ฉ๐จ๐ซ๐ญ๐ฎ๐ง๐ข๐ญ๐ฒ ๐๐ญ ๐๐๐ซ๐๐จ โ ๐๐โ๐ซ๐ ๐๐ข๐ซ๐ข๐ง๐ ๐ ๐๐๐ญ๐ ๐๐๐ข๐๐ง๐๐ ๐๐ง๐ญ๐๐ซ๐ง! ๐
Are you looking for a hands-on learning experience in ๐๐/๐๐, ๐๐ / ๐๐ ๐๐จ๐ฆ๐ฉ๐ฎ๐ญ๐๐ซ ๐ฏ๐ข๐ฌ๐ข๐จ๐ง, ๐๐ง๐ ๐๐๐ง๐๐ซ๐๐ญ๐ข๐ฏ๐ ๐๐?
Weโre expanding our team and seeking Data Science Interns. If youโre passionate about ๐ฅ๐๐ฏ๐๐ซ๐๐ ๐ข๐ง๐ ๐๐ ๐ญ๐จ ๐ซ๐๐ฏ๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง๐ข๐ณ๐ ๐๐ซ๐จ๐ง๐๐ฌ, ๐ฆ๐๐ฉ๐ฉ๐ข๐ง๐ , ๐ฌ๐ฎ๐ซ๐ฏ๐๐ฒ๐ข๐ง๐ , ๐ฆ๐ข๐ง๐ข๐ง๐ , ๐๐ง๐ ๐ข๐ง๐๐ซ๐๐ฌ๐ญ๐ซ๐ฎ๐๐ญ๐ฎ๐ซ๐ ๐๐ฉ๐ฉ๐ฅ๐ข๐๐๐ญ๐ข๐จ๐ง๐ฌโand you have strong skills in Python, Deep learning, and Computer Visionโletโs connect.
https://aus.keka.com/careers/jobdetails/86596
Are you looking for a hands-on learning experience in ๐๐/๐๐, ๐๐ / ๐๐ ๐๐จ๐ฆ๐ฉ๐ฎ๐ญ๐๐ซ ๐ฏ๐ข๐ฌ๐ข๐จ๐ง, ๐๐ง๐ ๐๐๐ง๐๐ซ๐๐ญ๐ข๐ฏ๐ ๐๐?
Weโre expanding our team and seeking Data Science Interns. If youโre passionate about ๐ฅ๐๐ฏ๐๐ซ๐๐ ๐ข๐ง๐ ๐๐ ๐ญ๐จ ๐ซ๐๐ฏ๐จ๐ฅ๐ฎ๐ญ๐ข๐จ๐ง๐ข๐ณ๐ ๐๐ซ๐จ๐ง๐๐ฌ, ๐ฆ๐๐ฉ๐ฉ๐ข๐ง๐ , ๐ฌ๐ฎ๐ซ๐ฏ๐๐ฒ๐ข๐ง๐ , ๐ฆ๐ข๐ง๐ข๐ง๐ , ๐๐ง๐ ๐ข๐ง๐๐ซ๐๐ฌ๐ญ๐ซ๐ฎ๐๐ญ๐ฎ๐ซ๐ ๐๐ฉ๐ฉ๐ฅ๐ข๐๐๐ญ๐ข๐จ๐ง๐ฌโand you have strong skills in Python, Deep learning, and Computer Visionโletโs connect.
https://aus.keka.com/careers/jobdetails/86596
โค1
Forwarded from Python for Data Analysts
๐ฑ ๐๐ฅ๐๐ ๐ฃ๐๐๐ต๐ผ๐ป ๐๐ผ๐๐ฟ๐๐ฒ๐ ๐ณ๐ผ๐ฟ ๐๐ฒ๐ด๐ถ๐ป๐ป๐ฒ๐ฟ๐ ๐ฏ๐ ๐๐ฎ๐ฟ๐๐ฎ๐ฟ๐ฑ, ๐๐๐ , ๐จ๐ฑ๐ฎ๐ฐ๐ถ๐๐ & ๐ ๐ผ๐ฟ๐ฒ๐
Looking to learn Python from scratchโwithout spending a rupee? ๐ป
Offered by trusted platforms like Harvard University, IBM, Udacity, freeCodeCamp, and OpenClassrooms, each course is self-paced, easy to follow, and includes a certificate of completion๐ฅ๐จโ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3HNeyBQ
Kickstart your careerโ ๏ธ
Looking to learn Python from scratchโwithout spending a rupee? ๐ป
Offered by trusted platforms like Harvard University, IBM, Udacity, freeCodeCamp, and OpenClassrooms, each course is self-paced, easy to follow, and includes a certificate of completion๐ฅ๐จโ๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3HNeyBQ
Kickstart your careerโ ๏ธ
โค3
Forwarded from Data Analyst Jobs
American Express is hiring Analyst ๐
Qualification : Post Graduation
Experience : 0-2 Years
Location : Bangalore / Gurugram
Apply link : https://aexp.eightfold.ai/careers/job/29724854?hl=en&utm_source=linkedin&domain=aexp.com
๐ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226
๐ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5
All the best! ๐๐
Qualification : Post Graduation
Experience : 0-2 Years
Location : Bangalore / Gurugram
Apply link : https://aexp.eightfold.ai/careers/job/29724854?hl=en&utm_source=linkedin&domain=aexp.com
๐ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226
๐ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5
All the best! ๐๐
โค1
Forwarded from Python for Data Analysts
๐ญ๐ฌ ๐ฅ๐ฒ๐ฎ๐น ๐๐ฎ๐๐ฎ ๐๐ป๐ฎ๐น๐๐๐ถ๐ฐ๐ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป๐ & ๐๐ผ๐ ๐๐ผ ๐๐ป๐๐๐ฒ๐ฟ ๐ง๐ต๐ฒ๐บ ๐๐ถ๐ธ๐ฒ ๐ฎ ๐ฃ๐ฟ๐ผ๐
๐ผ Data Analytics interviews can feel overwhelming โจ๏ธ
Youโre expected to know SQL, Python, Excel, Power BI, and be ready with real-world logic๐จโ๐ป๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3HSnvtq
Enjoy Learning โ ๏ธ
๐ผ Data Analytics interviews can feel overwhelming โจ๏ธ
Youโre expected to know SQL, Python, Excel, Power BI, and be ready with real-world logic๐จโ๐ป๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/3HSnvtq
Enjoy Learning โ ๏ธ
Forwarded from AI Prompts | ChatGPT | Google Gemini | Claude
List of Top 12 Coding Channels on WhatsApp:
1. Python Programming:
https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L
2. Coding Resources:
https://whatsapp.com/channel/0029VahiFZQ4o7qN54LTzB17
3. Coding Projects:
https://whatsapp.com/channel/0029VazkxJ62UPB7OQhBE502
4. Coding Interviews:
https://whatsapp.com/channel/0029VammZijATRSlLxywEC3X
5. Java Programming:
https://whatsapp.com/channel/0029VamdH5mHAdNMHMSBwg1s
6. Javascript:
https://whatsapp.com/channel/0029VavR9OxLtOjJTXrZNi32
7. Web Development:
https://whatsapp.com/channel/0029VaiSdWu4NVis9yNEE72z
8. Artificial Intelligence:
https://whatsapp.com/channel/0029VaoePz73bbV94yTh6V2E
9. Data Science:
https://whatsapp.com/channel/0029Va4QUHa6rsQjhITHK82y
10. Machine Learning:
https://whatsapp.com/channel/0029Va8v3eo1NCrQfGMseL2D
11. SQL:
https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v
12. GitHub:
https://whatsapp.com/channel/0029Vawixh9IXnlk7VfY6w43
ENJOY LEARNING ๐๐
1. Python Programming:
https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L
2. Coding Resources:
https://whatsapp.com/channel/0029VahiFZQ4o7qN54LTzB17
3. Coding Projects:
https://whatsapp.com/channel/0029VazkxJ62UPB7OQhBE502
4. Coding Interviews:
https://whatsapp.com/channel/0029VammZijATRSlLxywEC3X
5. Java Programming:
https://whatsapp.com/channel/0029VamdH5mHAdNMHMSBwg1s
6. Javascript:
https://whatsapp.com/channel/0029VavR9OxLtOjJTXrZNi32
7. Web Development:
https://whatsapp.com/channel/0029VaiSdWu4NVis9yNEE72z
8. Artificial Intelligence:
https://whatsapp.com/channel/0029VaoePz73bbV94yTh6V2E
9. Data Science:
https://whatsapp.com/channel/0029Va4QUHa6rsQjhITHK82y
10. Machine Learning:
https://whatsapp.com/channel/0029Va8v3eo1NCrQfGMseL2D
11. SQL:
https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v
12. GitHub:
https://whatsapp.com/channel/0029Vawixh9IXnlk7VfY6w43
ENJOY LEARNING ๐๐
โค2
Forwarded from Python for Data Analysts
๐๐ฒ๐ฎ๐ฟ๐ป๐ถ๐ป๐ด ๐ฆ๐ค๐ ๐๐ฎ๐ป ๐๐ฒ ๐๐๐ป! ๐ฐ ๐๐ป๐๐ฒ๐ฟ๐ฎ๐ฐ๐๐ถ๐๐ฒ ๐ฃ๐น๐ฎ๐๐ณ๐ผ๐ฟ๐บ๐ ๐ง๐ต๐ฎ๐ ๐๐ฒ๐ฒ๐น ๐๐ถ๐ธ๐ฒ ๐ฎ ๐๐ฎ๐บ๐ฒ๐
Think SQL is all about dry syntax and boring tutorials? Think again.๐ค
These 4 gamified SQL websites turn learning into an adventure โ from solving murder mysteries to exploring virtual islands, youโll write real SQL queries while cracking clues and completing missions๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4nh6PMv
These platforms make SQL interactive, practical, and funโ ๏ธ
Think SQL is all about dry syntax and boring tutorials? Think again.๐ค
These 4 gamified SQL websites turn learning into an adventure โ from solving murder mysteries to exploring virtual islands, youโll write real SQL queries while cracking clues and completing missions๐๐
๐๐ข๐ง๐ค๐:-
https://pdlink.in/4nh6PMv
These platforms make SQL interactive, practical, and funโ ๏ธ
1. What are the ways to detect outliers?
Outliers are detected using two methods:
Box Plot Method: According to this method, the value is considered an outlier if it exceeds or falls below 1.5*IQR (interquartile range), that is, if it lies above the top quartile (Q3) or below the bottom quartile (Q1).
Standard Deviation Method: According to this method, an outlier is defined as a value that is greater or lower than the mean ยฑ (3*standard deviation).
2. What is a Recursive Stored Procedure?
A stored procedure that calls itself until a boundary condition is reached, is called a recursive stored procedure. This recursive function helps the programmers to deploy the same set of code several times as and when required.
3. What is the shortcut to add a filter to a table in EXCEL?
The filter mechanism is used when you want to display only specific data from the entire dataset. By doing so, there is no change being made to the data. The shortcut to add a filter to a table is Ctrl+Shift+L.
4. What is DAX in Power BI?
DAX stands for Data Analysis Expressions. It's a collection of functions, operators, and constants used in formulas to calculate and return values. In other words, it helps you create new info from data you already have.
Outliers are detected using two methods:
Box Plot Method: According to this method, the value is considered an outlier if it exceeds or falls below 1.5*IQR (interquartile range), that is, if it lies above the top quartile (Q3) or below the bottom quartile (Q1).
Standard Deviation Method: According to this method, an outlier is defined as a value that is greater or lower than the mean ยฑ (3*standard deviation).
2. What is a Recursive Stored Procedure?
A stored procedure that calls itself until a boundary condition is reached, is called a recursive stored procedure. This recursive function helps the programmers to deploy the same set of code several times as and when required.
3. What is the shortcut to add a filter to a table in EXCEL?
The filter mechanism is used when you want to display only specific data from the entire dataset. By doing so, there is no change being made to the data. The shortcut to add a filter to a table is Ctrl+Shift+L.
4. What is DAX in Power BI?
DAX stands for Data Analysis Expressions. It's a collection of functions, operators, and constants used in formulas to calculate and return values. In other words, it helps you create new info from data you already have.
โค1๐1