Data Analytics
109K subscribers
129 photos
2 files
808 links
Perfect channel to learn Data Analytics

Learn SQL, Python, Alteryx, Tableau, Power BI and many more

For Promotions: @coderfun @love_data
Download Telegram
SQL Joins โœ…
โค10๐Ÿ‘1
SQL Cheatsheet ๐Ÿ“

This SQL cheatsheet is designed to be your quick reference guide for SQL programming. Whether youโ€™re a beginner learning how to query databases or an experienced developer looking for a handy resource, this cheatsheet covers essential SQL topics.

1. Database Basics
- CREATE DATABASE db_name;
- USE db_name;

2. Tables
- Create Table: CREATE TABLE table_name (col1 datatype, col2 datatype);
- Drop Table: DROP TABLE table_name;
- Alter Table: ALTER TABLE table_name ADD column_name datatype;

3. Insert Data
- INSERT INTO table_name (col1, col2) VALUES (val1, val2);

4. Select Queries
- Basic Select: SELECT * FROM table_name;
- Select Specific Columns: SELECT col1, col2 FROM table_name;
- Select with Condition: SELECT * FROM table_name WHERE condition;

5. Update Data
- UPDATE table_name SET col1 = value1 WHERE condition;

6. Delete Data
- DELETE FROM table_name WHERE condition;

7. Joins
- Inner Join: SELECT * FROM table1 INNER JOIN table2 ON table1.col = table2.col;
- Left Join: SELECT * FROM table1 LEFT JOIN table2 ON table1.col = table2.col;
- Right Join: SELECT * FROM table1 RIGHT JOIN table2 ON table1.col = table2.col;

8. Aggregations
- Count: SELECT COUNT(*) FROM table_name;
- Sum: SELECT SUM(col) FROM table_name;
- Group By: SELECT col, COUNT(*) FROM table_name GROUP BY col;

9. Sorting & Limiting
- Order By: SELECT * FROM table_name ORDER BY col ASC|DESC;
- Limit Results: SELECT * FROM table_name LIMIT n;

10. Indexes
- Create Index: CREATE INDEX idx_name ON table_name (col);
- Drop Index: DROP INDEX idx_name;

11. Subqueries
- SELECT * FROM table_name WHERE col IN (SELECT col FROM other_table);

12. Views
- Create View: CREATE VIEW view_name AS SELECT * FROM table_name;
- Drop View: DROP VIEW view_name;

Here you can find SQL Interview Resources๐Ÿ‘‡
https://t.iss.one/DataSimplifier

Share with credits: https://t.iss.one/sqlspecialist

Hope it helps :)
โค7
Beware of any recruiter who asks for money for interview scheduling, certification, or references etc. This is a clear sign of a scam and a fake hiring process.

- No Payment Required: In the IT industry, you should never have to make any kind of payment to get hired. Legitimate companies and recruiters do not charge candidates for job opportunities.

- Third-Party Agencies: Even when you are working with third-party agencies, these agencies charge the employer (their clients), not you.

Red Flags to Identify Scams:

- Payment Requests: If a recruiter asks for money at any stage, it is likely a scam.

- Unverified Contacts: Be cautious if the recruiterโ€™s contact information or company details cannot be verified.

- Pressure Tactics: Scammers often use urgency or pressure tactics to get you to pay quickly.

Always remember: never pay for a job opportunity. If a recruiter or agency asks for money, it is a scam. Stay away and protect yourself from fraudulent practices.
โค8๐Ÿ‘4
Which of the following is the correct formula to find the sum of cells A1 to A10 in Excel?
Anonymous Quiz
6%
=ADD(A1:A10)
90%
=SUM(A1:A10)
1%
=PLUS(A1:A10)
2%
=TOTAL(A1:A10)
โค9
Which Excel feature allows you to rearrange rows based on the contents of a column?
Anonymous Poll
23%
Filtering
44%
Sorting
19%
Conditional Formatting
14%
Pivot Tables
โค5
Which symbol is used to make a cell reference absolute in Excel (so it doesn't change when you copy the formula)?
Anonymous Quiz
15%
&
15%
*
61%
$
8%
!
โค5๐Ÿ‘2
๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—™๐—ฅ๐—˜๐—˜ (๐—ก๐—ผ ๐—ฆ๐˜๐—ฟ๐—ถ๐—ป๐—ด๐˜€ ๐—”๐˜๐˜๐—ฎ๐—ฐ๐—ต๐—ฒ๐—ฑ)

๐—ก๐—ผ ๐—ณ๐—ฎ๐—ป๐—ฐ๐˜† ๐—ฐ๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€, ๐—ป๐—ผ ๐—ฐ๐—ผ๐—ป๐—ฑ๐—ถ๐˜๐—ถ๐—ผ๐—ป๐˜€, ๐—ท๐˜‚๐˜€๐˜ ๐—ฝ๐˜‚๐—ฟ๐—ฒ ๐—น๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด.

๐—›๐—ฒ๐—ฟ๐—ฒโ€™๐˜€ ๐—ต๐—ผ๐˜„ ๐˜๐—ผ ๐—ฏ๐—ฒ๐—ฐ๐—ผ๐—บ๐—ฒ ๐—ฎ ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐˜๐—ถ๐˜€๐˜ ๐—ณ๐—ผ๐—ฟ ๐—™๐—ฅ๐—˜๐—˜:

1๏ธโƒฃ Python Programming for Data Science โ†’ Harvardโ€™s CS50P
The best intro to Python for absolute beginners:
โ†ฌ Covers loops, data structures, and practical exercises.
โ†ฌ Designed to help you build foundational coding skills.

Link: https://cs50.harvard.edu/python/

https://t.iss.one/datasciencefun

2๏ธโƒฃ Statistics & Probability โ†’ Khan Academy
Want to master probability, distributions, and hypothesis testing? This is where to start:
โ†ฌ Clear, beginner-friendly videos.
โ†ฌ Exercises to test your skills.

Link: https://www.khanacademy.org/math/statistics-probability

https://whatsapp.com/channel/0029Vat3Dc4KAwEcfFbNnZ3O

3๏ธโƒฃ Linear Algebra for Data Science โ†’ 3Blue1Brown
โ†ฌ Learn about matrices, vectors, and transformations.
โ†ฌ Essential for machine learning models.

Link: https://www.youtube.com/playlist?list=PLZHQObOWTQDMsr9KzVk3AjplI5PYPxkUr

4๏ธโƒฃ SQL Basics โ†’ Mode Analytics
SQL is the backbone of data manipulation. This tutorial covers:
โ†ฌ Writing queries, joins, and filtering data.
โ†ฌ Real-world datasets to practice.

Link: https://mode.com/sql-tutorial

https://whatsapp.com/channel/0029VanC5rODzgT6TiTGoa1v

5๏ธโƒฃ Data Visualization โ†’ freeCodeCamp
Learn to create stunning visualizations using Python libraries:
โ†ฌ Covers Matplotlib, Seaborn, and Plotly.
โ†ฌ Step-by-step projects included.

Link: https://www.youtube.com/watch?v=JLzTJhC2DZg

https://whatsapp.com/channel/0029VaxaFzoEQIaujB31SO34

6๏ธโƒฃ Machine Learning Basics โ†’ Googleโ€™s Machine Learning Crash Course
An in-depth introduction to machine learning for beginners:
โ†ฌ Learn supervised and unsupervised learning.
โ†ฌ Hands-on coding with TensorFlow.

Link: https://developers.google.com/machine-learning/crash-course

7๏ธโƒฃ Deep Learning โ†’ Fast.aiโ€™s Free Course
Fast.ai makes deep learning easy and accessible:
โ†ฌ Build neural networks with PyTorch.
โ†ฌ Learn by coding real projects.

Link: https://course.fast.ai/

8๏ธโƒฃ Data Science Projects โ†’ Kaggle
โ†ฌ Compete in challenges to practice your skills.
โ†ฌ Great way to build your portfolio.

Link: https://www.kaggle.com/
โค8
Dear Data Analyst:

If you are learning Excel

Use this:
โค13๐Ÿ‘5
Data Analytics Interview Questions with Answers

1. What are Query and Query language?

A query is nothing but a request sent to a database to retrieve data or information. The required data can be retrieved from a table or many tables in the database.

Query languages use various types of queries to retrieve data from databases. SQL, Datalog, and AQL are a few examples of query languages; however, SQL is known to be the widely used query language.



2. What are Superkey and candidate key?

A super key may be a single or a combination of keys that help to identify a record in a table. Know that Super keys can have one or more attributes, even though all the attributes are not necessary to identify the records.

A candidate key is the subset of Superkey, which can have one or more than one attributes to identify records in a table. Unlike Superkey, all the attributes of the candidate key must be helpful to identify the records.


3. What do you mean by buffer pool and mention its benefits?

A buffer pool in SQL is also known as a buffer cache. All the resources can store their cached data pages in a buffer pool. The size of the buffer pool can be defined during the configuration of an instance of SQL Server.
The following are the benefits of a buffer pool:

Increase in I/O performance
Reduction in I/O latency
Increase in transaction throughput
Increase in reading performance


4. What is the difference between Zero and NULL values in SQL?

When a field in a column doesnโ€™t have any value, it is said to be having a NULL value. Simply put, NULL is the blank field in a table. It can be considered as an unassigned, unknown, or unavailable value. On the contrary, zero is a number, and it is an available, assigned, and known value.
โค8
Data Analyst Roadmap ๐Ÿ“Š

๐Ÿ“‚ Python Basics
โˆŸ๐Ÿ“‚ Numpy & Pandas
โ€ƒโˆŸ๐Ÿ“‚ Data Cleaning
โ€ƒโ€ƒโˆŸ๐Ÿ“‚ Data Visualization (Matplotlib, Seaborn)
โ€ƒโ€ƒโ€ƒโˆŸ๐Ÿ“‚ SQL for Data Analysis
โ€ƒโ€ƒโ€ƒโ€ƒโˆŸ๐Ÿ“‚ Excel & Google Sheets
โ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโˆŸ๐Ÿ“‚ Statistics for Analysis
โ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโˆŸ๐Ÿ“‚ BI Tools (Power BI / Tableau)
โ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโˆŸ๐Ÿ“‚ Real-World Projects
โ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโ€ƒโˆŸโœ… Apply for Data Analyst Roles

โค๏ธ React for More!
โค19๐Ÿ”ฅ4
Data Analytics isn't rocket science. It's just a different language.

Here's a beginner's guide to the world of data analytics:

1) Understand the fundamentals:
- Mathematics
- Statistics
- Technology

2) Learn the tools:
- SQL
- Python
- Excel (yes, it's still relevant!)

3) Understand the data:
- What do you want to measure?
- How are you measuring it?
- What metrics are important to you?

4) Data Visualization:
- A picture is worth a thousand words

5) Practice:
- There's no better way to learn than to do it yourself.

Data Analytics is a valuable skill that can help you make better decisions, understand your audience better, and ultimately grow your business.

It's never too late to start learning!
๐Ÿ”ฅ8โค6
๐Ÿ How to Master Python for Data Analytics (Without Getting Overwhelmed!) ๐Ÿง 

Python is powerfulโ€”but libraries, syntax, and endless tutorials can feel like too much.
Hereโ€™s a 5-step roadmap to go from beginner to confident data analyst ๐Ÿ‘‡

๐Ÿ”น Step 1: Get Comfortable with Python Basics (The Foundation)
Start small and build your logic.
โœ… Variables, Data Types, Operators
โœ… if-else, loops, functions
โœ… Lists, Tuples, Sets, Dictionaries

Use tools like: Jupyter Notebook, Google Colab, Replit
Practice basic problems on: HackerRank, Edabit

๐Ÿ”น Step 2: Learn NumPy & Pandas (Your Analysis Engine)
These are non-negotiable for analysts.
โœ… NumPy โ†’ Arrays, broadcasting, math functions
โœ… Pandas โ†’ Series, DataFrames, filtering, sorting
โœ… Data cleaning, merging, handling nulls

Work with real CSV files and explore them hands-on!

๐Ÿ”น Step 3: Master Data Visualization (Make Data Talk)
Good plots = Clear insights
โœ… Matplotlib โ†’ Line, Bar, Pie
โœ… Seaborn โ†’ Heatmaps, Countplots, Histograms
โœ… Customize colors, labels, titles

Build charts from Pandas data.

๐Ÿ”น Step 4: Learn to Work with Real Data (APIs, Files, Web)
โœ… Read/write Excel, CSV, JSON
โœ… Connect to APIs with requests
โœ… Use modules like openpyxl, json, os, datetime

Optional: Web scraping with BeautifulSoup or Selenium

๐Ÿ”น Step 5: Get Fluent in Data Analysis Projects
โœ… Exploratory Data Analysis (EDA)
โœ… Summary stats, correlation
โœ… (Optional) Basic machine learning with scikit-learn
โœ… Build real mini-projects: Sales report, COVID trends, Movie ratings

You donโ€™t need 10 certificationsโ€”just 3 solid projects that prove your skills.
Keep it simple. Keep it real.

๐Ÿ’ฌ Tap โค๏ธ for more!
โค16๐Ÿ‘1๐Ÿฅฐ1
Some practical interview questions for an entry-level data analyst role in Power BI:

โ€ข  Data Import Scenario: Describe how you would import data from various sources (Excel,SQL Server, CSV) into Power BI.

โ€ข  Data Cleaning Exercise: In Power BI, how would you handle a dataset with missing values and inconsistent formats to prepare it for analysis?

โ€ข  Handling Large Datasets: If you're working with a very large dataset in Power BI that is causing performance issues, what strategies would you use to optimize the data processing?

โ€ข  Calculated Columns and Measures: Explain how you would use calculated columns and measures in Power BI to analyze year-over-year growth.

โ€ข  Data Modeling Case: You have sales data in one table and customer data in another. How would you create a data model in Power BI to analyze customer purchase behavior?

โ€ข  Visualizations Task: Describe your approach to visualizing sales data in Power BI to highlight trends over time across different product categories.

โ€ข  Dashboard Optimization: A Power BI dashboard is loading slowly. What steps would you take to diagnose and improve its performance?

โ€ข  Data Refresh Scheduling: How would you set up and manage automatic data refreshes for a weekly sales report in Power BI?

โ€ข  Row-Level Security: How would you implement user-level security in Power BI for a report that needs different access levels for various users?

โ€ข  Troubleshooting a DAX Calculation: If a DAX formula in Power BI is not returning the expected results, how would you go about troubleshooting it?

โ€ข  Integration with Other Tools: Describe a scenario where you integrated Power BI with another tool or service (like Excel, Azure, or a web API).

โ€ข  Interactive Reports Creation: How would you design a Power BI report that allows user interaction, such as using slicers or drill-down features?

โ€ข  Adapting to Data Source Changes: If there are structural changes in a primary data source (like addition or removal of columns), how would you update your Power BI reports and dashboards?

โ€ข  Sharing Reports: Explain how you would share a report with your team and set up access controls using Power BI Service.
โ€ข  SQL Queries in Power BI: How do you use SQL queries in Power BI for advanced data transformation or analysis?

โ€ข  Error Handling in Data Sources: How do you manage and resolve errors in data sources or calculations in Power BI?

โ€ข  Custom Visuals Usage: Have you used custom visuals in Power BI? Describe the scenario and the benefit

โ€ข  Collaboration in Power BI Projects: Discuss how you have worked with others on a Power BI project. What collaboration tools or features within Power BI did you utilize?

โ€ข  Performance Tuning: What steps do you take to ensure your Power BI reports are performing optimally when dealing with large datasets or complex calculations?

Power BI Interviews ๐Ÿ‘‡๐Ÿ‘‡
https://whatsapp.com/channel/0029VaGgzAk72WTmQFERKh02

Hope you'll like it

Like this post if you need more resources like this ๐Ÿ‘โค๏ธ
โค7
Must-know Pandas Functions for Data Analysis
โค8๐Ÿ‘1
Data Analytics with Python ๐Ÿ‘†
โค8๐Ÿ‘1
๐Ÿ—„๏ธ SQL Developer Roadmap

๐Ÿ“‚ SQL Basics (SELECT, WHERE, ORDER BY)
โˆŸ๐Ÿ“‚ Joins (INNER, LEFT, RIGHT, FULL)
โˆŸ๐Ÿ“‚ Aggregate Functions (COUNT, SUM, AVG)
โˆŸ๐Ÿ“‚ Grouping Data (GROUP BY, HAVING)
โˆŸ๐Ÿ“‚ Subqueries & Nested Queries
โˆŸ๐Ÿ“‚ Data Modification (INSERT, UPDATE, DELETE)
โˆŸ๐Ÿ“‚ Database Design (Normalization, Keys)
โˆŸ๐Ÿ“‚ Indexing & Query Optimization
โˆŸ๐Ÿ“‚ Stored Procedures & Functions
โˆŸ๐Ÿ“‚ Transactions & Locks
โˆŸ๐Ÿ“‚ Views & Triggers
โˆŸ๐Ÿ“‚ Backup & Restore
โˆŸ๐Ÿ“‚ Working with NoSQL basics (optional)
โˆŸ๐Ÿ“‚ Real Projects & Practice
โˆŸโœ… Apply for SQL Dev Roles

โค๏ธ React for More!
โค22๐Ÿ‘2