Data Science & Machine Learning
77.6K subscribers
910 photos
1 video
68 files
830 links
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free

For collaborations: @love_data
Download Telegram
๐—™๐—ฅ๐—˜๐—˜ ๐—”๐—œ ๐—–๐—ฎ๐—ฟ๐—ฒ๐—ฒ๐—ฟ ๐— ๐—ฎ๐˜€๐˜๐—ฒ๐—ฟ๐—ฐ๐—น๐—ฎ๐˜€๐˜€ ๐Ÿš€

Join this expert-led masterclass and discover how to become industry-ready for high-growth AI roles.

๐Ÿ“… Date: 24 September 2026
โฐ Time: 7:00 PMโ€“9:00 PM IST
๐ŸŒ Mode: Online
๐ŸŽ“ Certificate: Available to all attendees

Eligibility :- Graduates Passing In 2025 or earlier

๐Ÿ”— ๐—ฅ๐—ฒ๐—ด๐—ถ๐˜€๐˜๐—ฒ๐—ฟ ๐—ณ๐—ผ๐—ฟ ๐—™๐—ฅ๐—˜๐—˜ ๐Ÿ‘‡

https://pdlink.in/4xAMeGW

โšก Register now and take your first step towards a successful career in AI!
โค1
๐Ÿš€ Complete Data Science Roadmap 2026

๐Ÿ“ Phase 3: SQL for Data Science

๐Ÿ“– Topic 1: SQL Basics โ€” SELECT

SQL is one of the most important skills for a Data Scientist because real-world data is often stored in relational databases.

Before using Python, Machine Learning, or advanced analytics, you will frequently need to:

Retrieve data

Filter data

Combine tables

Aggregate information

Create datasets for analysis

Answer business questions

We'll start from the foundation: SELECT.

๐Ÿ”น 1. What Is SQL?

SQL stands for:

Structured Query Language

It is used to communicate with relational databases.

For example, a company might store:

Customers

customer_id | name  | city   | age
101 | Alice | Mumbai | 28
102 | Bob | Pune | 32
103 | Carol | Delhi | 25


You can use SQL to retrieve specific information from this table.

๐Ÿ”น 2. What Is a Database?

A database is a structured system used to store and manage data.

A relational database stores information in tables.

For example:

Customers

Contains customer information.

Orders

Contains order information.

Products

Contains product information.

These tables can be related using common columns such as:

customer_id

This becomes extremely important when we learn JOINs.

๐Ÿ”น 3. What Is a Table?

A table consists of:

Rows

Each row generally represents one record.

Example: One customer

Columns

Each column represents an attribute.

Example: customer_id, name, city, age

So:

Row โ†’ Record

Column โ†’ Attribute

๐Ÿ”น 4. Your First SQL Query

The basic SQL query is:

SELECT *
FROM customers;


Let's break it down:

SELECT

Specifies what data you want.

*

Means: Select all columns.

FROM

Specifies the table from which you want the data.

customers

The table name.

So the query means:

Give me all columns from the customers table.

๐Ÿ”น 5. Selecting Specific Columns

You don't always need every column.

Suppose you only want:

Customer ID

Customer name

Use:

SELECT customer_id, name
FROM customers;


Result:

customer_id | name
101 | Alice
102 | Bob
103 | Carol


This is usually better than using SELECT * when you only need a few columns.

๐Ÿ”น 6. Selecting One Column

You can select a single column:

SELECT name
FROM customers;


Result:

name
Alice
Bob
Carol


๐Ÿ”น 7. Selecting Multiple Columns

Separate column names using commas:

SELECT name, city, age
FROM customers;


This returns only those three columns.

๐Ÿ”น 8. What Does * Mean?

The asterisk:

*

means: All columns.

Example:

SELECT *
FROM customers;


If the table has 10 columns, the query returns all 10.

However, in production environments, it is often better to explicitly specify the columns you need.

Instead of:

SELECT *
FROM customers;


prefer:

SELECT customer_id, name, city
FROM customers;


when those are the only fields required.

๐Ÿ”น 9. SQL Statements and Semicolon

SQL statements are commonly terminated with:

;

Example:

SELECT name
FROM customers;


The semicolon indicates the end of the SQL statement in many SQL environments.

๐Ÿ”น 10. SQL Is Declarative

This is an important concept.

When you write:

SELECT name
FROM customers;
โค1
you tell the database:

What data you want

You generally don't tell the database exactly how to retrieve it internally.

The database's query optimizer determines an efficient execution strategy.

This is one reason SQL is called a declarative language.

๐Ÿ”น 11. SQL Keywords

SQL uses keywords such as:

SELECT

FROM

WHERE

GROUP BY

ORDER BY

HAVING

JOIN

These keywords define the structure of the query.

For example:

SELECT name
FROM customers;


Here:

SELECT โ†’ What to retrieve

FROM โ†’ Where to retrieve it from

๐Ÿ”น 12. SQL Case Sensitivity

SQL keywords are commonly written in uppercase:

SELECT

FROM

WHERE

This improves readability.

For example:

SELECT customer_id, name
FROM customers;


is easier to read than:

select customer_id,name from customers;


Most SQL database systems treat keywords as case-insensitive, although behavior regarding identifiers such as table and column names can vary by database system and configuration.

Recommended style:

Use:

UPPERCASE for SQL keywords

lowercase or snake_case for column/table names

๐Ÿ”น 13. Column Aliases

You can temporarily give a column a different name using AS.

Example:

SELECT
name AS customer_name
FROM customers;


The result will display:

customer_name
Alice
Bob
Carol


The original column name in the database is not changed.

The alias only changes how the result is displayed.

๐Ÿ”น 14. Aliases Without AS

In many SQL systems, you can also write:

SELECT
name customer_name
FROM customers;


However, using AS is generally clearer:

SELECT
name AS customer_name
FROM customers;


๐Ÿ”น 15. Calculations in SELECT

SQL can perform calculations.

Suppose we have:

price

quantity

We can calculate total sales:

SELECT
price,
quantity,
price * quantity AS total_amount
FROM orders;


This creates a calculated column:

total_amount = price ร— quantity

This ability becomes extremely useful in Data Analytics.

๐Ÿ”น 16. Using SELECT with Expressions

You can perform various calculations.

Example:

SELECT
salary,
salary * 12 AS annual_salary
FROM employees;


If monthly salary is:

โ‚น50,000

then:

annual_salary = โ‚น600,000

The original database isn't modified.

The calculation is performed when the query runs.

๐Ÿ”น 17. Selecting Constants

SQL can also return constant values.

Example:

SELECT
'Data Science' AS course;


Result:

course
Data Science


You can also use numbers:

SELECT
2026 AS year;


Result:

year
2026


This becomes useful when constructing analytical datasets.

๐Ÿ”น 18. DISTINCT

DISTINCT is part of the roadmap and we'll study it properly later.

For now, understand its basic purpose:

It returns unique values.

Suppose:

city

Pune

Mumbai

Pune

Delhi

Mumbai

Query:

SELECT DISTINCT city
FROM customers;


Result:

Pune
Mumbai
Delhi


Duplicate values are removed from the result.

๐Ÿ”น 19. SELECT DISTINCT on Multiple Columns

You can use multiple columns:

SELECT DISTINCT city, department
FROM employees;


Important:

DISTINCT applies to the combination of selected columns.

So if two rows have the same city but different departments, they are considered different combinations.

๐Ÿ”น 20. SQL Query Example

Imagine an orders table:
โค1
order_id | customer_id | product | price
1 | 101 | Laptop | 60000
2 | 102 | Phone | 30000
3 | 101 | Mouse | 1000


To retrieve order details:

SELECT
order_id,
customer_id,
product,
price
FROM orders;


To calculate price after adding a hypothetical 10% increase:

SELECT
product,
price,
price * 1.10 AS increased_price
FROM orders;


๐Ÿ”น 21. SELECT in Real-World Data Science

SQL is often the first step in a Data Science workflow.

For example:

Business Question

"Give me all customer transactions from the sales database."

You might start with:

SELECT
customer_id,
order_date,
product_id,
amount
FROM transactions;


Then later:

WHERE โ†’ Filter data

GROUP BY โ†’ Aggregate data

JOIN โ†’ Combine tables

ORDER BY โ†’ Sort results

Window Functions โ†’ Advanced analysis

Eventually, you may load the SQL result into Pandas:

import pandas as pd
df = pd.read_sql(query, connection)


So SQL and Python often work together.

๐Ÿ”น 22. Common Beginner Mistakes

โŒ Mistake 1: Forgetting the FROM clause

Incorrect:

SELECT name;

when you intend to retrieve a column from a table.

Correct:

SELECT name
FROM customers;


โŒ Mistake 2: Using commas incorrectly

Correct:

SELECT name, city, age
FROM customers;


โŒ Mistake 3: Confusing column names and values

A column:

city

is different from a text value:

'Pune'

We'll explore this more when we learn WHERE.

โŒ Mistake 4: Using SELECT * everywhere

SELECT * is useful while learning and exploring, but for production queries, selecting only the required columns can be more efficient and clearer.

๐Ÿ”น 23. Interview Questions

๐Ÿ’ก What does SELECT do?

SELECT specifies the columns or expressions that should appear in the query result.

๐Ÿ’ก What does SELECT * mean?

It selects all columns from the specified table.

๐Ÿ’ก What is an alias?

An alias gives a temporary name to a column or expression in the query result.

๐Ÿ’ก What does DISTINCT do?

It removes duplicate rows from the selected result.

๐ŸŽฏ Practice Questions

Q1. Write a query to select all columns from a table called employees.

Q2. Write a query to select only employee_id and salary from employees.

Q3. Write a query to display salary as monthly_salary.

Q4. Write a query to calculate price * quantity as total_amount from an orders table.

Q5. Write a query to return unique values from the department column of an employees table.

๐ŸŽฏ Key Takeaways

โœ… SQL is used to communicate with relational databases.

โœ… SELECT specifies what you want to retrieve.

โœ… FROM specifies the table.

โœ… * means all columns.

โœ… You can select one or multiple columns.

โœ… AS creates a temporary alias.

โœ… SQL can perform calculations.

โœ… DISTINCT returns unique results.

โœ… SQL is one of the most important tools for extracting data before analysis and Machine Learning.

๐Ÿงญ Double Tap โค๏ธ For More
โค5
๐ŸŽ“ ๐—ฆ๐˜๐—ฎ๐—ป๐—ณ๐—ผ๐—ฟ๐—ฑ ๐—จ๐—ป๐—ถ๐˜ƒ๐—ฒ๐—ฟ๐˜€๐—ถ๐˜๐˜† ๐—™๐—ฅ๐—˜๐—˜ ๐—ข๐—ป๐—น๐—ถ๐—ป๐—ฒ ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€! ๐Ÿš€

Explore free online learning opportunities from Stanford University across technology, business and more!

๐Ÿ’ป Tech & Programming
๐Ÿค– Artificial Intelligence & Data Science
๐Ÿ’ผ Business & Entrepreneurship
๐Ÿ’ก Leadership & Innovation

๐Ÿ”— ๐—˜๐˜…๐—ฝ๐—น๐—ผ๐—ฟ๐—ฒ ๐˜๐—ต๐—ฒ ๐—™๐—ฅ๐—˜๐—˜ ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ ๐Ÿ‘‡

https://pdlink.in/4hlnZGw

๐ŸŽฏ Great for students, freshers and working professionals looking to expand their knowledge.
โค6
๐Ÿš€ ๐—ง๐—ผ๐—ฝ ๐Ÿณ ๐—™๐—ฅ๐—˜๐—˜ ๐— ๐—ถ๐—ฐ๐—ฟ๐—ผ๐˜€๐—ผ๐—ณ๐˜ ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ ๐˜๐—ผ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป ๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜๐—ถ๐—ฐ๐˜€! ๐Ÿ“Š

Want to start a career in Data Analytics?

Explore these 7 free Microsoft-backed learning resources covering Power BI, Excel, SQL and data fundamentals

๐Ÿ”— ๐—”๐—ฐ๐—ฐ๐—ฒ๐˜€๐˜€ ๐˜๐—ต๐—ฒ ๐—™๐—ฅ๐—˜๐—˜ ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ ๐Ÿ‘‡

https://pdlink.in/3Tm2D3Z

๐Ÿ’ก Ideal for students, freshers and professionals who want to build practical data skills.
โค2
Soft skills questions will be part of your next data job interview!

Here is what you should prepare for:

1. ๐—–๐—ผ๐—บ๐—บ๐˜‚๐—ป๐—ถ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Be ready to discuss how you explain complex data insights to non-technical stakeholders.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œHow do you ensure that your data insights are understood and get used by non-technical stakeholders?โ€

2. ๐—ง๐—ฒ๐—ฎ๐—บ ๐—–๐—ผ๐—น๐—น๐—ฎ๐—ฏ๐—ผ๐—ฟ๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Show your ability to work well with others.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œCan you talk about a time when you had to manage a conflict within a team? How did you resolve it?โ€

3. ๐—ฃ๐—ฟ๐—ผ๐—ฏ๐—น๐—ฒ๐—บ-๐—ฆ๐—ผ๐—น๐˜ƒ๐—ถ๐—ป๐—ด: Highlight your critical thinking and problem-solving skills.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œDescribe a situation where you had to make a quick decision based on incomplete data. What was the outcome?โ€

4. ๐—”๐—ฑ๐—ฎ๐—ฝ๐˜๐—ฎ๐—ฏ๐—ถ๐—น๐—ถ๐˜๐˜†: Demonstrate your flexibility and openness to change.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œHow do you handle sudden changes in project priorities or scope?โ€

5. ๐—ง๐—ถ๐—บ๐—ฒ ๐— ๐—ฎ๐—ป๐—ฎ๐—ด๐—ฒ๐—บ๐—ฒ๐—ป๐˜: Prove your ability to manage multiple tasks and deadlines.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œTell me about a time when you were under tight deadlines. How did you manage to meet them?โ€

6. ๐—˜๐—บ๐—ฝ๐—ฎ๐˜๐—ต๐˜† ๐—ฎ๐—ป๐—ฑ ๐—จ๐—ป๐—ฑ๐—ฒ๐—ฟ๐˜€๐˜๐—ฎ๐—ป๐—ฑ๐—ถ๐—ป๐—ด: Show your ability to understand stakeholder needs.

๐˜Œ๐˜น๐˜ข๐˜ฎ๐˜ฑ๐˜ญ๐˜ฆ ๐˜ฒ๐˜ถ๐˜ฆ๐˜ด๐˜ต๐˜ช๐˜ฐ๐˜ฏ:
โ€œHow do you approach understanding the needs of different stakeholders when starting a new project?โ€


Structure your answers using the STAR method (Situation, Task, Action, Result). This helps you provide clear and concise responses that highlight your skills.

By preparing for these soft skills questions, youโ€™ll demonstrate that youโ€™re not just technically fit, but also a well-rounded professional ready to make an impact on the business.

You can find useful tips to improve your soft skills here: ๐Ÿ‘‡ https://t.me/englishlearnerspro/
โค8
๐Ÿš€ Data Science Roadmap 2026

**

๐Ÿ“ Phase 3: SQL for Data Science**

๐Ÿ“– Topic 2: SQL Basics โ€” WHERE

After learning SELECT, the next essential SQL concept is WHERE.

In real-world Data Science, databases can contain millions or billions of records. You usually don't want to retrieve everything.

You want to answer questions such as:

Which customers are from Mumbai?

Which orders are above โ‚น10,000?

Which employees joined after 2023?

Which transactions were successful?

Which products belong to a particular category?

The WHERE clause allows you to filter rows based on conditions.

๐Ÿ”น 1. What Is WHERE?

WHERE is used to filter records based on a specified condition.

Basic syntax:

SELECT column1, column2
FROM table_name
WHERE condition;


Example:

SELECT *
FROM customers
WHERE city = 'Mumbai';


This returns only customers whose city is Mumbai.

๐Ÿ”น 2. WHERE with Text Values

Text values are generally written inside single quotes.

Example:

SELECT customer_id, name
FROM customers
WHERE city = 'Pune';


This retrieves customers from Pune.

Another example:

SELECT *
FROM employees
WHERE department = 'Finance';


๐Ÿ”น 3. WHERE with Numbers

For numeric values, quotes are generally not required.

Example:

SELECT *
FROM customers
WHERE age > 30;


This returns customers older than 30.

Another example:

SELECT *
FROM orders
WHERE amount > 10000;


This returns orders where the amount is greater than 10,000.

๐Ÿ”น 4. Comparison Operators

The most commonly used comparison operators are:

Operator Meaning

= Equal to

<> Not equal to

!= Not equal to



Greater than

< Less than

= Greater than or equal to

<= Less than or equal to



Example:

SELECT *
FROM employees
WHERE salary >= 50000;


This returns employees whose salary is at least 50,000.

๐Ÿ”น 5. Equal To =

The = operator checks whether two values are equal.

SELECT *
FROM customers
WHERE city = 'Delhi';


Only records where city equals Delhi are returned.

๐Ÿ”น 6. Not Equal <>

You can retrieve records that don't match a value.

SELECT *
FROM customers
WHERE city <> 'Delhi';


This returns customers whose city isn't Delhi.

You may also see:

WHERE city != 'Delhi'


Both are commonly supported, although <> is the standard SQL operator.

๐Ÿ”น 7. Greater Than >

Example:

SELECT *
FROM orders
WHERE amount > 50000;


Returns orders above 50,000.

๐Ÿ”น 8. Less Than <

Example:

SELECT *
FROM products
WHERE price < 1000;


Returns products priced below 1,000.

๐Ÿ”น 9. Greater Than or Equal To >=

Example:

SELECT *
FROM employees
WHERE experience >= 5;


This includes employees with exactly 5 years as well as those with more than 5 years.

๐Ÿ”น 10. Less Than or Equal To <=

Example:

SELECT *
FROM products
WHERE price <= 500;


This includes products priced exactly at 500.

๐Ÿ”น 11. WHERE with Multiple Conditions

Real-world queries often require more than one condition.

For this, SQL provides logical operators:

โ€ข AND

โ€ข OR

โ€ข NOT

๐Ÿ”น 12. AND

AND means all conditions must be true.

Example:

SELECT *
FROM customers
WHERE city = 'Pune'
AND age > 30;


This returns customers who:

1.

Are from Pune

2.

Are older than 30

Both conditions must be satisfied.

๐Ÿ”น 13. OR

OR means at least one condition must be true.

Example:
SELECT *
FROM customers
WHERE city = 'Pune'
OR city = 'Mumbai';


This returns customers from either Pune or Mumbai.

๐Ÿ”น 14. AND vs OR

Consider:

WHERE age > 30
AND city = 'Pune'


A customer must satisfy both conditions.

But:

WHERE age > 30
OR city = 'Pune'


A customer only needs to satisfy one or both conditions.

This difference is extremely important.

๐Ÿ”น 15. NOT

NOT reverses a condition.

Example:

SELECT *
FROM customers
WHERE NOT city = 'Pune';


This returns customers who aren't from Pune.

You can also commonly write:

SELECT *
FROM customers
WHERE city <> 'Pune';


๐Ÿ”น 16. Combining AND and OR

You can combine multiple logical operators.

Example:

SELECT *
FROM employees
WHERE department = 'Finance'
AND salary > 60000;


Another example:

SELECT *
FROM employees
WHERE department = 'Finance'
OR department = 'Analytics'
AND salary > 60000;


When conditions become complex, use parentheses to make your intended logic explicit.

For example:

SELECT *
FROM employees
WHERE
(department = 'Finance' OR department = 'Analytics')
AND salary > 60000;


This means:



Employees from Finance or Analytics who earn more than 60,000.



๐Ÿ”น 17. Why Parentheses Matter

Consider:

WHERE city = 'Pune'
OR city = 'Mumbai'
AND age > 30


SQL's logical evaluation rules can make this behave differently from what a beginner might expect.

A safer and clearer version is:

WHERE
(city = 'Pune' OR city = 'Mumbai')
AND age > 30;


This clearly communicates the intended logic.

Best practice:



Use parentheses whenever combining AND and OR in a complex condition.



๐Ÿ”น 18. WHERE with Dates

You can also filter dates.

Example:

SELECT *
FROM orders
WHERE order_date >= '2026-01-01';


This retrieves orders on or after January 1, 2026.

Another example:

SELECT *
FROM orders
WHERE order_date < '2026-07-01';


This retrieves orders before July 1, 2026.

Date syntax can vary slightly across database systems, so always consider the SQL dialect you're using.

๐Ÿ”น 19. Filtering a Date Range

Suppose you want orders during a particular period.

You can use:

SELECT *
FROM orders
WHERE order_date >= '2026-01-01'
AND order_date < '2026-04-01';


This retrieves orders from January through March.

Using a half-open range like this is particularly useful when working with timestamps because it avoids accidentally excluding records with time components.

๐Ÿ”น 20. BETWEEN

SQL provides BETWEEN for range filtering.

Example:

SELECT *
FROM products
WHERE price BETWEEN 1000 AND 5000;


BETWEEN is inclusive of both boundaries in standard SQL.

So this includes:

1000

and:

5000

as well as values between them.

๐Ÿ”น 21. BETWEEN with Dates

Example:

SELECT *
FROM orders
WHERE order_date BETWEEN '2026-01-01' AND '2026-01-31';


For a date-only column, this can be useful.

However, if order_date contains timestamps, using:

order_date >= '2026-01-01'
AND order_date < '2026-02-01'


is often safer because it includes the entire final day regardless of the timestamp.

๐Ÿ”น 22. IN Operator

Suppose you want customers from:

Pune

Mumbai

Delhi

You could write:

SELECT *
FROM customers
WHERE city = 'Pune'
OR city = 'Mumbai'
OR city = 'Delhi';
But IN makes this much cleaner:

SELECT *
FROM customers
WHERE city IN ('Pune', 'Mumbai', 'Delhi');


IN checks whether a value belongs to a specified list.

๐Ÿ”น 23. NOT IN

You can also exclude multiple values.

SELECT *
FROM customers
WHERE city NOT IN ('Pune', 'Mumbai');


This returns customers whose city isn't Pune or Mumbai.

๐Ÿ”น 24. LIKE

LIKE is used for pattern matching.

Suppose we want names beginning with A.

SELECT *
FROM customers
WHERE name LIKE 'A%';


Here:

% โ†’ Any sequence of characters

So this could match:

Alice

Amit

Ananya

๐Ÿ”น 25. LIKE with %

Example:

SELECT *
FROM customers
WHERE name LIKE '%an%';


This searches for names containing the sequence an.

The exact behavior can depend on database collation and case-sensitivity settings.

๐Ÿ”น 26. LIKE with _

The underscore _ generally represents exactly one character.

Example:

SELECT *
FROM products
WHERE product_code LIKE 'A_1';


This could match:

A11

AB1

AX1

But not:

A123

A1

because _ represents one character.

๐Ÿ”น 27. NULL Values

One of the most important concepts in SQL filtering is NULL.

NULL generally means:



Missing, unknown, or unavailable value.



It does not mean:

Zero

Empty string

False

For example:

customer_id name phone

101 Alice 9999999999

102 Bob NULL

Bob's phone number is missing or unknown.

๐Ÿ”น 28. Checking for NULL

You should not normally write:

WHERE phone = NULL


Instead, use:

SELECT *
FROM customers
WHERE phone IS NULL;


To find records where the value exists:

SELECT *
FROM customers
WHERE phone IS NOT NULL;


This is extremely important in Data Analytics.

๐Ÿ”น 29. WHERE and NULL Logic

Suppose:

WHERE salary > 50000


What happens when salary is NULL?

The condition isn't considered true.

The row won't be returned.

SQL uses three-valued logic involving:

TRUE

FALSE

UNKNOWN

This is one reason NULL handling requires special attention.

๐Ÿ”น 30. WHERE with SELECT

WHERE works together with SELECT.

Example:

SELECT
customer_id,
name,
city
FROM customers
WHERE city = 'Pune';


The query:

1.

Retrieves selected columns

2.

From the customers table

3.

Keeps only rows satisfying the condition

๐Ÿ”น 31. WHERE in Real-World Data Science

Imagine a transaction database containing millions of records.

A Data Scientist needs:



Successful transactions above โ‚น10,000 from January 2026 onward.



A query might look like:

SELECT
transaction_id,
customer_id,
transaction_date,
amount
FROM transactions
WHERE status = 'Success'
AND amount > 10000
AND transaction_date >= '2026-01-01';


This is much more efficient for analysis than extracting the entire table and filtering everything later in Python.

๐Ÿ”น 32. WHERE Before Python

A common Data Science workflow is:

Database โ†’ SQL โ†’ Filter/Transform โ†’ Python โ†’ Analysis โ†’ Model

For example:

SELECT
customer_id,
amount,
transaction_date
FROM transactions
WHERE status = 'Success';


Then load the result into Pandas:

import pandas as pd

df = pd.read_sql(query, connection)


SQL handles the database-side filtering, while Python can then handle deeper analysis.

๐Ÿ”น 33. Common Mistakes

โŒ Mistake 1: Using = with NULL

Incorrect:

WHERE phone = NULL;


Correct:

WHERE phone IS NULL;
โŒ Mistake 2: Forgetting quotes around text

Incorrect:

WHERE city = Pune;


Correct:

WHERE city = 'Pune';


โŒ Mistake 3: Using AND when you mean OR

Incorrect if you want either city:

WHERE city = 'Pune'
AND city = 'Mumbai';


A single city value cannot normally be both at the same time.

Correct:

WHERE city = 'Pune'
OR city = 'Mumbai';


Or:

WHERE city IN ('Pune', 'Mumbai');


โŒ Mistake 4: Forgetting parentheses

For complex conditions, use parentheses:

WHERE
(city = 'Pune' OR city = 'Mumbai')
AND age > 30;


โŒ Mistake 5: Assuming BETWEEN excludes the boundaries

BETWEEN is generally inclusive.

๐Ÿ”น 34. Interview Questions

๐Ÿ’ก What is the purpose of WHERE?

WHERE filters rows based on a condition.

๐Ÿ’ก What is the difference between WHERE and SELECT?

SELECT โ†’ Determines what columns/expressions appear in the result.

WHERE โ†’ Determines which rows are included.

๐Ÿ’ก How do you check for NULL?

Use:

IS NULL

or:

IS NOT NULL

๐Ÿ’ก What is the difference between IN and OR?

IN provides a concise way to test whether a value matches any value in a list.

๐Ÿ’ก Is BETWEEN inclusive?

Yes, BETWEEN generally includes both boundary values.

๐ŸŽฏ Practice Questions

Q1. Write a query to retrieve employees whose salary is greater than 50,000.

Q2. Write a query to retrieve customers from Pune or Mumbai.

Q3. Write a query to retrieve products priced between 1,000 and 5,000.

Q4. Write a query to retrieve customers whose phone number is missing.

Q5. Write a query to retrieve orders where the status is Success and the amount is greater than 10,000.

๐ŸŽฏ Key Takeaways

โœ… WHERE is used to filter rows.

โœ… = checks equality.

โœ… <> and != can be used for not equal.

โœ… AND requires all specified conditions to be true.

โœ… OR requires at least one condition to be true.

โœ… IN is useful for matching multiple values.

โœ… BETWEEN is useful for ranges and is generally inclusive.

โœ… LIKE is used for pattern matching.

โœ… % represents a sequence of characters.

โœ… _ represents one character.

โœ… Use IS NULL and IS NOT NULL for NULL values.

โœ… Parentheses make complex AND/OR logic clearer and safer.

๐Ÿงญ Double Tap โค๏ธ For More
โค3