SQL Interview Questions Part 65 | PWC Interview Question & Answer 🔥🔥

Published: 07 April 2024
on channel: ItJunction4all
1,458
40

SQL Interview Questions Part 65 | PWC Interview Question & Answer 🔥🔥

This question has been asked in PWC interview. This question will be helpful in cracking any SQL interview

Problem Statement : There are two tables namely Src and Tgt. Both table have two columns i.e. id and Name.
Write an SQL query to get the expected output as below. It should display Id column and derived ‘Comment’ column which will have as either “Only in Source”, “Mismatch” and ”Only in Target” as shown below

-------------------------------------------------------------------------
𝗝𝗼𝗶𝗻 𝗺𝗲 𝗼𝗻 𝗦𝗼𝗰𝗶𝗮𝗹 𝗠𝗲𝗱𝗶𝗮:🔥
-------------------------------------------------------------------------
*Instagram :
  / itjunction4all  

*Twitter:
  / sunilkr5672  
-------------------------------------------------------------------------
Table and Insert SQL Script :
-------------------------------------------------------------------------
create table Src(
id int,
name varchar(5)
)

create table Tgt(
id int,
name varchar(5)
)

insert into Src values(1,'A'),(2,'B'),(3,'C'),(4,'D')
insert into Tgt values(1,'A'),(2,'B'),(4,'X'),(5,'F')

#SQL #PWCInterview #itjunction4all


Watch video SQL Interview Questions Part 65 | PWC Interview Question & Answer 🔥🔥 online without registration, duration hours minute second in high quality. This video was added by user ItJunction4all 07 April 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 1,45 once and liked it 4 people.