Data Engineers
Free Data Engineering Ebooks & Courses
Больше📈 Аналитический обзор Telegram-канала Data Engineers
Канал Data Engineers (@sql_engineer) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 10 363 подписчиков, занимая 19 370 место в категории Образование и 40 181 место в регионе Индия.
📊 Показатели аудитории и динамика
С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 10 363 подписчиков.
Согласно последним данным от 08 июня, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 245, а за последние 24 часа — 13, при этом общий охват остаётся высоким.
- Статус верификации: Не верифицирован
- Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 10.67%. В первые 24 часа после публикации контент обычно набирает 2.43% реакций от общего числа подписчиков.
- Охват публикаций: В среднем каждый пост получает 1 106 просмотров. В течение первых суток публикация набирает 252 просмотров.
- Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 5.
- Тематические интересы: Контент сосредоточен на ключевых темах, таких как sql, learning, analytic, engineer, link:-.
📝 Описание и контентная политика
Автор описывает ресурс как площадку для выражения субъективного мнения:
“Free Data Engineering Ebooks & Courses”
Благодаря высокой частоте обновлений (последние данные получены 09 июня, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Образование.
INTERSECT and EXCEPT. Let’s take a closer look at how they work.
🔻 The INTERSECT Operator
The INTERSECT operator is used to find rows that are present in both queries. It works like the intersection of sets in mathematics, returning only those records that exist in both datasets.
Example:
SELECT column1, column2
FROM table1
INTERSECT
SELECT column1, column2
FROM table2;
This will return rows that appear in both table1 and table2.
Key Points:
- The INTERSECT operator automatically removes duplicate rows from the result.
- The selected columns must have compatible data types.
🔻 The EXCEPT Operator
The EXCEPT operator is used to find rows that are present in the first query but not in the second. This is similar to the difference between sets, returning only those records that exist in the first dataset but are missing from the second.
Example:
SELECT column1, column2
FROM table1
EXCEPT
SELECT column1, column2
FROM table2;
Here, the result will include rows that are in table1 but not in table2.
Key Points:
- The EXCEPT operator also removes duplicate rows from the result.
- As with INTERSECT, the columns must have compatible data types.
📊 What’s the Difference Between UNION, INTERSECT, and EXCEPT?
- UNION combines all rows from both queries, excluding duplicates.
- INTERSECT returns only the rows present in both queries.
- EXCEPT returns rows from the first query that are not found in the second.
📌 Real-Life Examples
1. Finding common customers. Use INTERSECT to identify customers who have made purchases both online and in physical stores.
2. Determining unique products. Use EXCEPT to find products that are sold in one store but not in another.
By using INTERSECT and EXCEPT, you can simplify data analysis and work more flexibly with sets, making it easier to solve tasks related to finding intersections and differences between datasets.
Happy querying!
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
