filmov
tv
SQL Server | sql server interview questions and answers | Total by multiple tables | Part 39

Показать описание
For SQL Quiz-
Find Us On FaceBook-
Query---
CREATE TABLE PART39_A
(
ID INT,
SALARY INT
)
CREATE TABLE PART39_B
(
ID INT,
SALARY INT
)
CREATE TABLE PART39_C
(
ID INT,
SALARY INT
)
INSERT INTO PART39_A VALUES(1,100),(2,200),(3,300),(4,400)
INSERT INTO PART39_B VALUES(1,100),(2,200),(3,300)
INSERT INTO PART39_C VALUES(1,100),(2,200),(3,300),(5,500)
select * from PART39_A
select * from PART39_B
select * from PART39_C
---method 1
;with cte
as
(
select * from PART39_A
union all
select * from PART39_B
union all
select * from PART39_C
)
select id,sum(SALARY) as sal
from cte
group by ID
--Method 2
from PART39_A as a
full join PART39_B as b on a.ID=b.ID
full join PART39_C as c on a.ID=c.ID
How to Install Microsoft SQL Server & SSMS on Windows 10/11 [ 2023 Update ] Complete guide
SQL Server Management Studio (SSMS) | Full Course
SQL Server Performance Essentials – Full Course
SQL Server Management Studio Intro
How To Download and Install Microsoft SQL Server 2025
SQL Server Crash course | Microsoft SQL Server Tutorial | From Absolute Beginners to Advanced
SSMS fur Beginners #1: How to connect to SQL Server using SQL Server Management Studio. First steps.
How to install Microsoft SQL Server 2022 on Windows 10
SQL Server Tutorial For Beginners | SQL Server Management Studio Install & Tips 2022
Create Database and table in Microsoft SQL Server Management Studio #sql #sqlserver #sqlqueries
How to Create a Database in SQL Server Management Studio | SQL Server (SSMS) #sqlserver #database
What's new in SQL Server 2025
SQL Basics Tutorial For Beginners | Installing SQL Server Management Studio and Create Tables | 1/4
How to Install SQL Server 2022
How to Get Started with SQL Server Management Studio
SQL Tutorial for Beginners
SQL Server Tutorial For Beginners | Microsoft SQL Server Tutorial | SQL Server Training | Edureka
SQL Server 2022 - Installation step by step
Introduction of SQL Server | SQL Server Tutorial
Begin, Rollback and Commit - Transactions in SQL #shorts #coding #sql #sqlqueries #sqlserver
SSMS Tutorial (SQL Server Management Studio) - Feature Demonstration
What is Microsoft SQL Server?
How to Create Database in SQL Server
How to install SQL Server 2022 Developer and SQL Server Management Studio (SSMS) - for FREE
Комментарии