SQL Programming Resources – Telegram
SQL Programming Resources
75K subscribers
483 photos
13 files
411 links
Find top SQL resources from global universities, cool projects, and learning materials for data analytics.

Admin: @coderfun

Useful links: heylink.me/DataAnalytics

Promotions: @love_data
Download Telegram
INSERT INTO employees (first_name, last_name) VALUES ('John', 'Doe');

--This inserts a new employee named John Doe into the "employees" table.
👍64
The UPDATE statement modifies existing records in a table.
👍4
UPDATE customers SET email = 'new@email.com' WHERE customer_id = 123;

--This updates the email address for the customer with ID 123.
👍6
Joins allow you to combine data from multiple tables based on related columns
👍10
Forwarded from Data Analytics
SQL Notes Part-1

Like if you need more content on SQL 😄❤️
👍528👏1
Forwarded from Data Analytics
SQL Notes Part-2
Window Functions
👍124
Forwarded from Data Analytics
SQL Notes Part-3
(Cascading actions and Normalisation concepts)
👍83
Forwarded from Data Analytics
SQL Notes PART-4
Data Wrangling functions on string data types 😄👍
👍93
SQL Quick Guide
For more join -> t.me/sqlspecialist
👍15
Free resources to learn SQL

Udacity free course- https://imp.i115008.net/AoAg7K

For Practice- https://stratascratch.com/?via=free
👍133
SQL Quick Notes.pdf
49.7 KB
SQL Quick Notes to refresh your concepts
👍18
SQL Roadmap for Data Analyst
👍21👏1
If you are trying to transition into the data analytics domain and getting started with SQL, focus on the most useful concept that will help you solve the majority of the problems, and then try to learn the rest of the topics:

👉🏻 Basic Aggregation function:
1️⃣ AVG
2️⃣ COUNT
3️⃣ SUM
4️⃣ MIN
5️⃣ MAX

👉🏻 JOINS
1️⃣ Left
2️⃣ Inner
3️⃣ Self (Important, Practice questions on self join)

👉🏻 Windows Function (Important)
1️⃣ Learn how partitioning works
2️⃣ Learn the different use cases where Ranking/Numbering Functions are used? ( ROW_NUMBER,RANK, DENSE_RANK, NTILE)
3️⃣ Use Cases of LEAD & LAG functions
4️⃣ Use cases of Aggregate window functions

👉🏻 GROUP BY
👉🏻 WHERE vs HAVING
👉🏻 CASE STATEMENT
👉🏻 UNION vs Union ALL
👉🏻 LOGICAL OPERATORS

Other Commonly used functions:
👉🏻 IFNULL
👉🏻 COALESCE
👉🏻 ROUND
👉🏻 Working with Date Functions
1️⃣ EXTRACTING YEAR/MONTH/WEEK/DAY
2️⃣ Calculating date differences

👉🏻CTE
👉🏻Views & Triggers (optional)

Here is an amazing resources to learn & practice SQL: https://bit.ly/3FxxKPz

Share with credits: https://news.1rj.ru/str/sqlspecialist

Hope it helps :)
👍253
Top 5 SQL Functions

https://news.1rj.ru/str/sqlanalyst

1. SELECT Statement:
- Function: Retrieving data from one or more tables.
- Example: SELECT column1, column2 FROM table WHERE condition;

2. COUNT Function:
- Function: Counts the number of rows that meet a specified condition.
- Example: SELECT COUNT(column) FROM table WHERE condition;

3. SUM Function:
- Function: Calculates the sum of values in a numeric column.
- Example: SELECT SUM(column) FROM table WHERE condition;

4. AVG Function:
- Function: Computes the average value of a numeric column.
- Example: SELECT AVG(column) FROM table WHERE condition;

5. GROUP BY Clause:
- Function: Groups rows that have the same values in specified columns into summary rows.
- Example: SELECT column, AVG(numeric_column) FROM table GROUP BY column;

These functions are fundamental in SQL and are frequently used for various data manipulation tasks, including data retrieval, aggregation, and analysis.
👍233