Essential Python and SQL topics for data analysts ππ
Python Topics:
Python Resources - @pythonanalyst
1. Data Structures
- Lists, Tuples, and Dictionaries
- NumPy Arrays for numerical data
2. Data Manipulation
- Pandas DataFrames for structured data
- Data Cleaning and Preprocessing techniques
- Data Transformation and Reshaping
3. Data Visualization
- Matplotlib for basic plotting
- Seaborn for statistical visualizations
- Plotly for interactive charts
4. Statistical Analysis
- Descriptive Statistics
- Hypothesis Testing
- Regression Analysis
5. Machine Learning
- Scikit-Learn for machine learning models
- Model Building, Training, and Evaluation
- Feature Engineering and Selection
6. Time Series Analysis
- Handling Time Series Data
- Time Series Forecasting
- Anomaly Detection
7. Python Fundamentals
- Control Flow (if statements, loops)
- Functions and Modular Code
- Exception Handling
- File
SQL Topics:
SQL Resources - @sqlanalyst
1. SQL Basics
- SQL Syntax
- SELECT Queries
- Filters
2. Data Retrieval
- Aggregation Functions (SUM, AVG, COUNT)
- GROUP BY
3. Data Filtering
- WHERE Clause
- ORDER BY
4. Data Joins
- JOIN Operations
- Subqueries
5. Advanced SQL
- Window Functions
- Indexing
- Performance Optimization
6. Database Management
- Connecting to Databases
- SQLAlchemy
7. Database Design
- Data Types
- Normalization
Remember, it's highly likely that you won't know all these concepts from the start. Data analysis is a journey where the more you learn, the more you grow. Embrace the learning process, and your skills will continually evolve and expand. Keep up the great work!
Share with credits: https://t.iss.one/sqlspecialist
Hope it helps :)
Python Topics:
Python Resources - @pythonanalyst
1. Data Structures
- Lists, Tuples, and Dictionaries
- NumPy Arrays for numerical data
2. Data Manipulation
- Pandas DataFrames for structured data
- Data Cleaning and Preprocessing techniques
- Data Transformation and Reshaping
3. Data Visualization
- Matplotlib for basic plotting
- Seaborn for statistical visualizations
- Plotly for interactive charts
4. Statistical Analysis
- Descriptive Statistics
- Hypothesis Testing
- Regression Analysis
5. Machine Learning
- Scikit-Learn for machine learning models
- Model Building, Training, and Evaluation
- Feature Engineering and Selection
6. Time Series Analysis
- Handling Time Series Data
- Time Series Forecasting
- Anomaly Detection
7. Python Fundamentals
- Control Flow (if statements, loops)
- Functions and Modular Code
- Exception Handling
- File
SQL Topics:
SQL Resources - @sqlanalyst
1. SQL Basics
- SQL Syntax
- SELECT Queries
- Filters
2. Data Retrieval
- Aggregation Functions (SUM, AVG, COUNT)
- GROUP BY
3. Data Filtering
- WHERE Clause
- ORDER BY
4. Data Joins
- JOIN Operations
- Subqueries
5. Advanced SQL
- Window Functions
- Indexing
- Performance Optimization
6. Database Management
- Connecting to Databases
- SQLAlchemy
7. Database Design
- Data Types
- Normalization
Remember, it's highly likely that you won't know all these concepts from the start. Data analysis is a journey where the more you learn, the more you grow. Embrace the learning process, and your skills will continually evolve and expand. Keep up the great work!
Share with credits: https://t.iss.one/sqlspecialist
Hope it helps :)
β€13π1
Don't aim for this:
Excel - 100%
SQL - 0%
PowerBI/Tableau - 0%
Python/R - 0%
Aim for this:
Excel - 25%
SQL - 25%
PowerBI/Tableau - 25%
Python/R - 25%
You don't need to know everything straight away.
Excel - 100%
SQL - 0%
PowerBI/Tableau - 0%
Python/R - 0%
Aim for this:
Excel - 25%
SQL - 25%
PowerBI/Tableau - 25%
Python/R - 25%
You don't need to know everything straight away.
β€34π5
What does the SELECT statement do in SQL?
Anonymous Quiz
2%
A. Deletes data from a table
87%
B. Retrieves data from a table
5%
C. Updates data in a table
6%
D. Creates a new table
β€5π₯°1
Which clause is used to filter records in SQL?
Anonymous Quiz
15%
A. ORDER BY
20%
B. GROUP BY
60%
C. WHERE
6%
D. HAVING
What will the following query return?
SELECT COUNT(*) FROM Customers;
SELECT COUNT(*) FROM Customers;
Anonymous Quiz
34%
A. Total number of columns in Customers
51%
B. Total number of rows in Customers
3%
C. Total number of NULL values
11%
D. Total number of unique customers
β€5
Which operator is used to match a pattern in SQL?
Anonymous Quiz
12%
A. IN
71%
B. LIKE
12%
C. BETWEEN
5%
D. IS
β€7
What does INNER JOIN do?
Anonymous Quiz
18%
A. Returns all rows from both tables
76%
B. Returns rows with matching values in both tables
3%
C. Returns unmatched rows from the left table
3%
D. Returns unmatched rows from the right table
β€9π3
β
Data Analyst Mock Interview Questions with Answers ππ―
1οΈβ£ Q: Explain the difference between a primary key and a foreign key.
A:
β’ Primary Key: Uniquely identifies each record in a table; cannot be null.
β’ Foreign Key: A field in one table that refers to the primary key of another table; establishes a relationship between the tables.
2οΈβ£ Q: What is the difference between WHERE and HAVING clauses in SQL?
A:
β’ WHERE: Filters rows before grouping.
β’ HAVING: Filters groups after aggregation (used with GROUP BY).
3οΈβ£ Q: How do you handle missing values in a dataset?
A: Common techniques include:
β’ Imputation: Replacing missing values with mean, median, mode, or a constant.
β’ Removal: Removing rows or columns with too many missing values.
β’ Using algorithms that handle missing data: Some machine learning algorithms can handle missing values natively.
4οΈβ£ Q: What is the difference between a line chart and a bar chart, and when would you use each?
A:
β’ Line Chart: Shows trends over time or continuous values.
β’ Bar Chart: Compares discrete categories or values.
β’ Use a line chart to show sales trends over months; use a bar chart to compare sales across different product categories.
5οΈβ£ Q: Explain what a p-value is and its significance.
A: The p-value is the probability of obtaining results as extreme as, or more extreme than, the observed results, assuming the null hypothesis is true. A small p-value (typically β€ 0.05) indicates strong evidence against the null hypothesis.
6οΈβ£ Q: How would you deal with outliers in a dataset?
A:
β’ Identify Outliers: Using box plots, scatter plots, or statistical methods (e.g., Z-score).
β’ Treatment:
β’ Remove Outliers: If they are due to errors or anomalies.
β’ Transform Data: Using techniques like log transformation.
β’ Keep Outliers: If they represent genuine data points and provide valuable insights.
7οΈβ£ Q: What are the different types of joins in SQL?
A:
β’ INNER JOIN: Returns rows only when there is a match in both tables.
β’ LEFT JOIN (or LEFT OUTER JOIN): Returns all rows from the left table, and the matching rows from the right table. If there is no match, the right side will contain NULL values.
β’ RIGHT JOIN (or RIGHT OUTER JOIN): Returns all rows from the right table, and the matching rows from the left table. If there is no match, the left side will contain NULL values.
β’ FULL OUTER JOIN: Returns all rows from both tables, filling in NULLs when there is no match.
8οΈβ£ Q: How would you approach a data analysis project from start to finish?
A:
β’ Define the Problem: Understand the business question you're trying to answer.
β’ Collect Data: Gather relevant data from various sources.
β’ Clean and Preprocess Data: Handle missing values, outliers, and inconsistencies.
β’ Explore and Analyze Data: Use statistical methods and visualizations to identify patterns.
β’ Draw Conclusions and Make Recommendations: Summarize your findings and provide actionable insights.
β’ Communicate Results: Present your analysis to stakeholders.
π Tap β€οΈ for more!
1οΈβ£ Q: Explain the difference between a primary key and a foreign key.
A:
β’ Primary Key: Uniquely identifies each record in a table; cannot be null.
β’ Foreign Key: A field in one table that refers to the primary key of another table; establishes a relationship between the tables.
2οΈβ£ Q: What is the difference between WHERE and HAVING clauses in SQL?
A:
β’ WHERE: Filters rows before grouping.
β’ HAVING: Filters groups after aggregation (used with GROUP BY).
3οΈβ£ Q: How do you handle missing values in a dataset?
A: Common techniques include:
β’ Imputation: Replacing missing values with mean, median, mode, or a constant.
β’ Removal: Removing rows or columns with too many missing values.
β’ Using algorithms that handle missing data: Some machine learning algorithms can handle missing values natively.
4οΈβ£ Q: What is the difference between a line chart and a bar chart, and when would you use each?
A:
β’ Line Chart: Shows trends over time or continuous values.
β’ Bar Chart: Compares discrete categories or values.
β’ Use a line chart to show sales trends over months; use a bar chart to compare sales across different product categories.
5οΈβ£ Q: Explain what a p-value is and its significance.
A: The p-value is the probability of obtaining results as extreme as, or more extreme than, the observed results, assuming the null hypothesis is true. A small p-value (typically β€ 0.05) indicates strong evidence against the null hypothesis.
6οΈβ£ Q: How would you deal with outliers in a dataset?
A:
β’ Identify Outliers: Using box plots, scatter plots, or statistical methods (e.g., Z-score).
β’ Treatment:
β’ Remove Outliers: If they are due to errors or anomalies.
β’ Transform Data: Using techniques like log transformation.
β’ Keep Outliers: If they represent genuine data points and provide valuable insights.
7οΈβ£ Q: What are the different types of joins in SQL?
A:
β’ INNER JOIN: Returns rows only when there is a match in both tables.
β’ LEFT JOIN (or LEFT OUTER JOIN): Returns all rows from the left table, and the matching rows from the right table. If there is no match, the right side will contain NULL values.
β’ RIGHT JOIN (or RIGHT OUTER JOIN): Returns all rows from the right table, and the matching rows from the left table. If there is no match, the left side will contain NULL values.
β’ FULL OUTER JOIN: Returns all rows from both tables, filling in NULLs when there is no match.
8οΈβ£ Q: How would you approach a data analysis project from start to finish?
A:
β’ Define the Problem: Understand the business question you're trying to answer.
β’ Collect Data: Gather relevant data from various sources.
β’ Clean and Preprocess Data: Handle missing values, outliers, and inconsistencies.
β’ Explore and Analyze Data: Use statistical methods and visualizations to identify patterns.
β’ Draw Conclusions and Make Recommendations: Summarize your findings and provide actionable insights.
β’ Communicate Results: Present your analysis to stakeholders.
π Tap β€οΈ for more!
β€21
β
Step-by-Step Approach to Learn Data Analytics ππ§
β Excel Fundamentals:
β Master formulas, pivot tables, data validation, charts, and graphs.
β SQL Basics:
β Learn to query databases, use SELECT, FROM, WHERE, JOIN, GROUP BY, and aggregate functions.
β Data Visualization:
β Get proficient with tools like Tableau or Power BI to create insightful dashboards.
β Statistical Concepts:
β Understand descriptive statistics (mean, median, mode), distributions, and hypothesis testing.
β Data Cleaning & Preprocessing:
β Learn how to handle missing data, outliers, and data inconsistencies.
β Exploratory Data Analysis (EDA):
β Explore datasets, identify patterns, and formulate hypotheses.
β Python for Data Analysis (Optional but Recommended):
β Learn Pandas and NumPy for data manipulation and analysis.
β Real-World Projects:
β Analyze datasets from Kaggle, UCI Machine Learning Repository, or your own collection.
β Business Acumen:
β Understand key business metrics and how data insights impact business decisions.
β Build a Portfolio:
β Showcase your projects on GitHub, Tableau Public, or a personal website. Highlight the impact of your analysis.
π Tap β€οΈ for more!
β Excel Fundamentals:
β Master formulas, pivot tables, data validation, charts, and graphs.
β SQL Basics:
β Learn to query databases, use SELECT, FROM, WHERE, JOIN, GROUP BY, and aggregate functions.
β Data Visualization:
β Get proficient with tools like Tableau or Power BI to create insightful dashboards.
β Statistical Concepts:
β Understand descriptive statistics (mean, median, mode), distributions, and hypothesis testing.
β Data Cleaning & Preprocessing:
β Learn how to handle missing data, outliers, and data inconsistencies.
β Exploratory Data Analysis (EDA):
β Explore datasets, identify patterns, and formulate hypotheses.
β Python for Data Analysis (Optional but Recommended):
β Learn Pandas and NumPy for data manipulation and analysis.
β Real-World Projects:
β Analyze datasets from Kaggle, UCI Machine Learning Repository, or your own collection.
β Business Acumen:
β Understand key business metrics and how data insights impact business decisions.
β Build a Portfolio:
β Showcase your projects on GitHub, Tableau Public, or a personal website. Highlight the impact of your analysis.
π Tap β€οΈ for more!
β€20π1π₯1
β
How to Get a Data Analyst Job as a Fresher in 2025 ππΌ
πΉ Whatβs the Market Like in 2025?
β’ High demand in BFSI, healthcare, retail & tech
β’ Companies expect Excel, SQL, BI tools & storytelling skills
β’ Python & data visualization give a strong edge
β’ Remote jobs are fewer, but freelance & internship opportunities are growing
πΉ Skills You MUST Have:
1οΈβ£ Excel β Pivot tables, formulas, dashboards
2οΈβ£ SQL β Joins, subqueries, CTEs, window functions
3οΈβ£ Power BI / Tableau β For interactive dashboards
4οΈβ£ Python β Data cleaning & analysis (Pandas, Matplotlib)
5οΈβ£ Statistics β Mean, median, correlation, hypothesis testing
6οΈβ£ Business Understanding β KPIs, revenue, churn etc.
πΉ Build a Strong Profile:
βοΈ Do real-world projects (sales, HR, e-commerce data)
βοΈ Publish dashboards on Tableau Public / Power BI
βοΈ Share work on GitHub & LinkedIn
βοΈ Earn certifications (Google Data Analytics, Power BI, SQL)
βοΈ Practice mock interviews & case studies
πΉ Practice Platforms:
β’ Kaggle
β’ StrataScratch
β’ DataLemur
πΉ Fresher-Friendly Job Titles:
β’ Junior Data Analyst
β’ Business Analyst
β’ MIS Executive
β’ Reporting Analyst
πΉ Companies Hiring Freshers in 2025:
β’ TCS
β’ Infosys
β’ Wipro
β’ Cognizant
β’ Fractal Analytics
β’ EY, KPMG
β’ Startups & EdTech companies
π Tip: If a job says "1β2 yrs experience", apply anyway if your skills & projects match!
π Tap β€οΈ if you found this helpful!
πΉ Whatβs the Market Like in 2025?
β’ High demand in BFSI, healthcare, retail & tech
β’ Companies expect Excel, SQL, BI tools & storytelling skills
β’ Python & data visualization give a strong edge
β’ Remote jobs are fewer, but freelance & internship opportunities are growing
πΉ Skills You MUST Have:
1οΈβ£ Excel β Pivot tables, formulas, dashboards
2οΈβ£ SQL β Joins, subqueries, CTEs, window functions
3οΈβ£ Power BI / Tableau β For interactive dashboards
4οΈβ£ Python β Data cleaning & analysis (Pandas, Matplotlib)
5οΈβ£ Statistics β Mean, median, correlation, hypothesis testing
6οΈβ£ Business Understanding β KPIs, revenue, churn etc.
πΉ Build a Strong Profile:
βοΈ Do real-world projects (sales, HR, e-commerce data)
βοΈ Publish dashboards on Tableau Public / Power BI
βοΈ Share work on GitHub & LinkedIn
βοΈ Earn certifications (Google Data Analytics, Power BI, SQL)
βοΈ Practice mock interviews & case studies
πΉ Practice Platforms:
β’ Kaggle
β’ StrataScratch
β’ DataLemur
πΉ Fresher-Friendly Job Titles:
β’ Junior Data Analyst
β’ Business Analyst
β’ MIS Executive
β’ Reporting Analyst
πΉ Companies Hiring Freshers in 2025:
β’ TCS
β’ Infosys
β’ Wipro
β’ Cognizant
β’ Fractal Analytics
β’ EY, KPMG
β’ Startups & EdTech companies
π Tip: If a job says "1β2 yrs experience", apply anyway if your skills & projects match!
π Tap β€οΈ if you found this helpful!
β€43π2π₯°1
β
SQL Constraints ππ‘οΈ
Constraints are the rules that keep your database clean & accurate.
πΉ 1. PRIMARY KEY
β€ Uniquely identifies each row in a table
β€ Cannot be NULL or duplicated
β€ Links to a primary key in another table
β€ Ensures data consistency across tables
β€ Ensures all values in a column are different
β€ Column cannot have NULL (empty) values
β€ Limits the values that can be entered
β€ Automatically sets a default value
βοΈ No duplicates
βοΈ No missing data
βοΈ Valid and consistent values
βοΈ Reliable database performance
SQL Roadmap: https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v/1394
π Tap β€οΈ for more!
Constraints are the rules that keep your database clean & accurate.
πΉ 1. PRIMARY KEY
β€ Uniquely identifies each row in a table
β€ Cannot be NULL or duplicated
CREATE TABLE users (πΉ 2. FOREIGN KEY
user_id INT PRIMARY KEY,
name VARCHAR(50)
);
β€ Links to a primary key in another table
β€ Ensures data consistency across tables
CREATE TABLE orders (πΉ 3. UNIQUE
order_id INT PRIMARY KEY,
user_id INT,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);
β€ Ensures all values in a column are different
CREATE TABLE employees (πΉ 4. NOT NULL
id INT PRIMARY KEY,
email VARCHAR(100) UNIQUE
);
β€ Column cannot have NULL (empty) values
CREATE TABLE products (πΉ 5. CHECK
id INT PRIMARY KEY,
name VARCHAR(100) NOT NULL
);
β€ Limits the values that can be entered
CREATE TABLE students (πΉ 6. DEFAULT
id INT PRIMARY KEY,
age INT CHECK (age >= 18)
);
β€ Automatically sets a default value
CREATE TABLE orders (π― Why Constraints Matter:
id INT PRIMARY KEY,
status VARCHAR(20) DEFAULT 'Pending'
);
βοΈ No duplicates
βοΈ No missing data
βοΈ Valid and consistent values
βοΈ Reliable database performance
SQL Roadmap: https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v/1394
π Tap β€οΈ for more!
β€15π2
πΉ Top 10 SQL Functions/Commands Commonly Used in Data Analysis π
1οΈβ£ SELECT
β Used to retrieve specific columns from a table.
2οΈβ£ WHERE
β Filters rows based on a condition.
3οΈβ£ GROUP BY
β Groups rows that have the same values into summary rows.
4οΈβ£ ORDER BY
β Sorts the result by one or more columns.
5οΈβ£ JOIN
β Combines rows from two or more tables based on a related column.
6οΈβ£ COUNT() / SUM() / AVG() / MIN() / MAX()
β Common aggregate functions for metrics and summaries.
7οΈβ£ HAVING
β Filters after a GROUP BY (unlike WHERE, which filters before).
8οΈβ£ LIMIT
β Restricts number of rows returned.
9οΈβ£ CASE
β Implements conditional logic in queries.
π DATE functions (NOW(), DATE_PART(), DATEDIFF(), etc.)
β Handle and extract info from dates.
Join our WhatsApp channel: https://whatsapp.com/channel/0029VbAbnvPLSmbeFYNdNA29
π Tap β€οΈ for more!
1οΈβ£ SELECT
β Used to retrieve specific columns from a table.
SELECT name, age FROM users;
2οΈβ£ WHERE
β Filters rows based on a condition.
SELECT * FROM sales WHERE region = 'North';
3οΈβ£ GROUP BY
β Groups rows that have the same values into summary rows.
SELECT region, SUM(sales) FROM sales GROUP BY region;
4οΈβ£ ORDER BY
β Sorts the result by one or more columns.
SELECT * FROM customers ORDER BY created_at DESC;
5οΈβ£ JOIN
β Combines rows from two or more tables based on a related column.
SELECT a.name, b.salary
FROM employees a
JOIN salaries b ON a.id = b.emp_id;
6οΈβ£ COUNT() / SUM() / AVG() / MIN() / MAX()
β Common aggregate functions for metrics and summaries.
SELECT COUNT(*) FROM orders WHERE status = 'completed';
7οΈβ£ HAVING
β Filters after a GROUP BY (unlike WHERE, which filters before).
SELECT department, COUNT(*) FROM employees GROUP BY department HAVING COUNT(*) > 10;
8οΈβ£ LIMIT
β Restricts number of rows returned.
SELECT * FROM products LIMIT 5;
9οΈβ£ CASE
β Implements conditional logic in queries.
SELECT name,
CASE
WHEN score >= 90 THEN 'A'
WHEN score >= 75 THEN 'B'
ELSE 'C'
END AS grade
FROM students;
π DATE functions (NOW(), DATE_PART(), DATEDIFF(), etc.)
β Handle and extract info from dates.
SELECT DATE_PART('year', order_date) FROM orders;Join our WhatsApp channel: https://whatsapp.com/channel/0029VbAbnvPLSmbeFYNdNA29
π Tap β€οΈ for more!
β€13π4π3π₯1
β
7 Habits That Make You a Better Data Analyst ππ§
1οΈβ£ Explore Real Datasets Regularly
β Use Kaggle, Data.gov, or Google Dataset Search
β Focus on different domains: sales, HR, marketing, etc.
2οΈβ£ Master the Art of Asking Questions
β Start with: What do we want to know?
β Then: What data do we need to answer it?
3οΈβ£ Use SQL & Excel Daily
β Practice joins, window functions, pivot tables, formulas
β Aim to solve 1 real-world query per day
4οΈβ£ Visualize Everything
β Use Power BI, Tableau, or Matplotlib
β Keep charts simple, clear, and insight-driven
5οΈβ£ Storytelling > Just Reporting
β Always add βSo what?β to your analysis
β Help stakeholders take action, not just read numbers
6οΈβ£ Document Your Work
β Use Notion, Google Docs, or GitHub
β Write what you did, how, and whyβitβll save time later
7οΈβ£ Review & Reflect Weekly
β What did you learn? What confused you?
β Track mistakes + insights in a learning journal
π‘ Pro Tip: Join data communities (Reddit, LinkedIn, Slack groups) to grow faster.
π Tap for more
1οΈβ£ Explore Real Datasets Regularly
β Use Kaggle, Data.gov, or Google Dataset Search
β Focus on different domains: sales, HR, marketing, etc.
2οΈβ£ Master the Art of Asking Questions
β Start with: What do we want to know?
β Then: What data do we need to answer it?
3οΈβ£ Use SQL & Excel Daily
β Practice joins, window functions, pivot tables, formulas
β Aim to solve 1 real-world query per day
4οΈβ£ Visualize Everything
β Use Power BI, Tableau, or Matplotlib
β Keep charts simple, clear, and insight-driven
5οΈβ£ Storytelling > Just Reporting
β Always add βSo what?β to your analysis
β Help stakeholders take action, not just read numbers
6οΈβ£ Document Your Work
β Use Notion, Google Docs, or GitHub
β Write what you did, how, and whyβitβll save time later
7οΈβ£ Review & Reflect Weekly
β What did you learn? What confused you?
β Track mistakes + insights in a learning journal
π‘ Pro Tip: Join data communities (Reddit, LinkedIn, Slack groups) to grow faster.
π Tap for more
β€26π4π2π₯°1π1
Which SQL command is used to add new records into a table?*
Anonymous Quiz
26%
a) UPDATE
2%
b) DELETE
70%
c) INSERT
2%
d) SELECT
β€10
What does a correlated subquery mean?
Anonymous Quiz
5%
a) A subquery executed only once
78%
b) A subquery that depends on the outer query for its values
10%
c) A subquery that returns multiple rows
7%
d) A subquery with UNION operation
β€4π€©1
Which of the following is used to combine the results of two SELECT statements and removes duplicates?
Anonymous Quiz
71%
UNION
29%
UNION ALL
β€5π₯°1
Which SQL function would you use to find the number of days between two dates?
Anonymous Quiz
2%
a) NOW()
84%
b) DATEDIFF()
5%
c) SUBSTRING()
9%
d) COUNT()
β€5
What does the following SQL command do?
ALTER TABLE employees ADD COLUMN salary INT;
ALTER TABLE employees ADD COLUMN salary INT;
Anonymous Quiz
2%
a) Deletes the salary column
88%
b) Adds a new column named salary of type integer
9%
c) Changes salary column to integer
1%
d) Drops the table employees
β€3π₯°1
Which constraint ensures that a column cannot have NULL values?
Anonymous Quiz
29%
UNIQUE
71%
NOT NULL
β€5π₯°1
Which of the following statements about Views is TRUE?
Anonymous Quiz
9%
a) Views store data physically
8%
b) Views cannot be updated
75%
c) Views are virtual tables created by a query
8%
d) Views automatically index the data
β€8π₯2
β° Quick Reminder!
π Agent.ai Challenge is LIVE!
π° Win up to $50,000 β no code needed!
π₯ Open to all. Limited time!
π Register now β
https://shorturl.at/lSfTv
Double Tap β€οΈ for more AI Resources
π Agent.ai Challenge is LIVE!
π° Win up to $50,000 β no code needed!
π₯ Open to all. Limited time!
π Register now β
https://shorturl.at/lSfTv
Double Tap β€οΈ for more AI Resources
β€6π2π1