Из-за периодической блокировки нашего сайта РКН сервисами, просим воспользоваться резервным адресом:
Загрузить через dTub.ru Загрузить через ycliper.com Загрузить через ClipSaver.ruУ нас вы можете посмотреть бесплатно SQL JOINS Interview Question | What does different SQL Joins return? | data engineer| data analysts или скачать в максимальном доступном качестве, которое было загружено на ютуб. Для скачивания выберите вариант из формы ниже:
Роботам не доступно скачивание файлов. Если вы считаете что это ошибочное сообщение - попробуйте зайти на сайт через браузер google chrome или mozilla firefox. Если сообщение не исчезает - напишите о проблеме в обратную связь. Спасибо.
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса savevideohd.ru
Given 2 tables, identify the no of records returned using different type of SQL Joins. This is a very frequently asked SQL Interview questions especially when a recruiter wants to test your knowledge on SQL joins, this is the kind of questions you can expect. In this video, we shall look at 2 different datasets. Each dataset contains 2 tables which has duplicate data, null values etc. You are required to identify the no of records returned using INNER Join, LEFT Join, RIGHT Join, FULL JOIN, Natural Join and Cross Join. And you need to answer them without querying the tables. Hence in order to answer such questions, you need to understand clearly how SQL internally performs different type of joins. How each SQL JOIN type works (INNER, LEFT, RIGHT, FULL) How joins affect record counts in your SQL queries Real-world examples using employee and department tables Tips for optimizing JOIN queries for better performance This tutorial is perfect for those preparing for SQL interviews or improving their data engineering skills. Make sure to subscribe for more SQL problems, coding tips, and data engineering interview questions! NOTE:- Any Two NULLs are not same /**8888888888******************************************************/ with Table1 as ( SELECT 'AAA' as ID UNION ALL SELECT 'AAA' as ID UNION ALL SELECT 'BBB' as ID UNION ALL SELECT '' as ID UNION ALL SELECT 'NULL' as ID UNION ALL SELECT NULL as ID ), Table2 as ( SELECT 'AAA' as ID UNION ALL SELECT 'BBB' as ID UNION ALL SELECT 'BBB' as ID UNION ALL SELECT '' as ID UNION ALL SELECT '' as ID UNION ALL SELECT 'NULL' as ID UNION ALL SELECT NULL as ID ) SELECT Table1.ID as Table1ID, Table2.ID as Table2ID FROM Table1 Inner join Table2 ON Table1.ID = Table2.ID /**8888888888******************************************************/ Given 2 tables, identify the no of records returned using different type of SQL Joins. This is a very frequently asked SQL Interview questions especially when a recruiter wants to test your knowledge on SQL joins, this is the kind of questions you can expect. In this video, we shall look at 2 different datasets. Each dataset contains 2 tables which has duplicate data, null values etc. You are required to identify the no of records returned using INNER Join, LEFT Join, RIGHT Join, FULL JOIN, Natural Join and Cross Join. And you need to answer them without querying the tables. Hence in order to answer such questions, you need to understand clearly how SQL internally performs different type of joins. #database fix