SQL Programming Resources
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
Show more๐ Analytical overview of Telegram channel SQL Programming Resources
Channel SQL Programming Resources (@sqlanalyst) in the English language segment is an active participant. Currently, the community unites 75 783 subscribers, ranking 1 687 in the Technologies & Applications category and 4 375 in the India region.
๐ Audience metrics and dynamics
Since its creation on ะฝะตะฒัะดะพะผะพ, the project has demonstrated rapid growth, gathering an audience of 75 783 subscribers.
According to the latest data from 05 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 516 over the last 30 days and by 48 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 3.24%. Within the first 24 hours after publication, content typically collects 1.21% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 456 views. Within the first day, a publication typically gains 918 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
- Thematic interests: Content is focused on key topics such as row, sql, customer_id, logic, desc.
๐ Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
โ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โ
Thanks to the high frequency of updates (latest data received on 06 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
SELECT name FROM employees_2024
UNION
SELECT name FROM employees_2025;
โ Removes duplicates automatically
โ
Result
name
โข Amit
โข Neha
โข Ravi
โก 4. UNION ALL
SELECT name FROM employees_2024
UNION ALL
SELECT name FROM employees_2025;
โ Keeps duplicates
โ Faster than UNION
โ
Result
name
โข Amit
โข Neha
โข Ravi
โข Neha
๐ฅ 5. UNION vs UNION ALL
UNION
โข Removes duplicates
โข Slower
โข Doesn't keep all rows
UNION ALL
โข Doesn't remove duplicates
โข Faster
โข Keeps all rows
โก 6. ORDER BY with UNION
SELECT name FROM employees_2024
UNION
SELECT name FROM employees_2025
ORDER BY name;
๐ฏ 7. Practice Tasks
1. Combine employee names using UNION
2. Combine employee names using UNION ALL
3. Identify duplicate removal
4. Sort UNION result using ORDER BY
5. Compare UNION vs UNION ALL output
โก Mini Challenge ๐ฅ
๐ Combine customer names from two branches and keep duplicates
๐ฅ Mini Challenge Solution ๐ฏ
๐ Since duplicates should remain โ use UNION ALL
โ
Example Tables
๐ข branch_a_customers
customer_name
โข Amit
โข Neha
๐ข branch_b_customers
customer_name
โข Ravi
โข Neha
โ
SQL Solution
SELECT customer_name
FROM branch_a_customers
UNION ALL
SELECT customer_name
FROM branch_b_customers;
โ
Result
customer_name
โข Amit
โข Neha
โข Ravi
โข Neha
โ Duplicate Neha is preserved ๐ฏ
๐ง Why UNION ALL?
๐ UNION โ removes duplicates
๐ UNION ALL โ keeps duplicates + faster
Double Tap โค๏ธ For MoreCREATE TABLE employees (
emp_id INT,
name VARCHAR(50) NOT NULL
);
๐ฅ 4. UNIQUE Constraint
๐ Prevent duplicate values
CREATE TABLE users (
email VARCHAR(100) UNIQUE
);
๐ฅ 5. PRIMARY KEY
๐ Unique + NOT NULL
CREATE TABLE employees (
emp_id INT PRIMARY KEY,
name VARCHAR(50)
);
โ Every row must have unique emp_id
๐ฅ 6. FOREIGN KEY
๐ Creates relationship between tables
CREATE TABLE employees (
emp_id INT PRIMARY KEY,
dept_id INT,
FOREIGN KEY (dept_id)
REFERENCES departments(dept_id)
);
โ dept_id must exist in departments table
๐ฅ 7. CHECK Constraint
๐ Restrict values using condition
CREATE TABLE employees (
salary INT CHECK (salary > 0)
);
โ Salary cannot be negative
๐ฅ 8. DEFAULT Constraint
๐ Assign default value automatically
CREATE TABLE employees (
city VARCHAR(50) DEFAULT 'Pune'
);
๐ฏ 9. Practice Tasks
1. Create table using PRIMARY KEY
2. Add UNIQUE constraint on email
3. Create FOREIGN KEY relationship
4. Use CHECK for salary > 0
5. Add DEFAULT city value
โก Mini Challenge ๐ฅ
๐ Create students table with:
โข student_id โ PRIMARY KEY
โข email โ UNIQUE
โข age > 18 using CHECK
โข city default = 'Mumbai'
Double Tap โค๏ธ For More
Available now! Telegram Research 2025 โ the year's key insights 
