filmov
tv
SQL Server | Optum SQL Interview Questions | SQL Interview Preparation | Part 42

Показать описание
For SQL Quiz-
Find Us On FaceBook-
---Query--
IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME='OPTUM_P3_EMP')
BEGIN
DROP TABLE OPTUM_P3_EMP
END
CREATE TABLE OPTUM_P3_EMP
(
EMP_ID INT,
DEPT_ID INT
)
IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME='OPTUM_P3_DEPT')
BEGIN
DROP TABLE OPTUM_P3_DEPT
END
CREATE TABLE OPTUM_P3_DEPT
(
DEPT_ID INT,
DEPT_NAME VARCHAR(50)
)
INSERT INTO OPTUM_P3_EMP VALUES(1,10),(2,11),(3,13),(4,22)
INSERT INTO OPTUM_P3_DEPT VALUES(10,'IT'),(11,'ACC'),(12,'FINANCE'),(13,'ADMIN')
SELECT * FROM OPTUM_P3_EMP
SELECT * FROM OPTUM_P3_DEPT
SELECT E.EMP_ID,D.DEPT_NAME
FROM OPTUM_P3_EMP AS E
LEFT JOIN OPTUM_P3_DEPT AS D
ON E.DEPT_ID=D.DEPT_ID
WHERE D.DEPT_ID IS NULL
SQL Server | Optum sql interview question and answer | Sql Server Interview Part 40
SQL Server | Optum sql interview question and answer | Sql Server Interview Part 41
SQL Server | Optum SQL Interview Questions | SQL Interview Preparation | Part 42
Avoid this SQL Programming Mistake! (AND Vs WHERE)
Data Analysis SQL Interview Questions | Running SUM | Who Hit the Sales Target First
Top 10 SQL Tricky Interview Questions | SAMSUNG SQL Interview Questions | SQL Server 2020 | Part 62
TCS SQL Interview Questions | SQL Server | SQL Interview Preparation | Part 43
How To Simplify Daily SQL Server Administration Tasks with SQL Admin Toolset
SQL Server | Logical combination of word in sql server | Sql Server Interview Part 32
Top 20 SQL interview questions and answers 2020 | sql interview | sql practice | part 2
sql server interview questions and answers for experienced 2019 | part 54
SQL Server | sql Server Interview questions | alternate order of male and female | Part 33
SQL Server | How to get only int values in sql | Sql Server Interview Part 36
Genpact sql interview | Split String in sql server | SQL Server |SQL Interview Preparation | Part 45
3 SQL Queries Asked in Interview for Business Analyst - Solved
Deep Security Installation using SQL Server Failover Cluster Part 9
SQL Server | Write the query to find the missing rows in sql | Sql Server Interview Part 37
SQL & T-SQL INTERVIEW QUESTIONS
Part 9 : Working with 'WHERE' Clause In SQL
Top 2 SQL Tricky Interview Questions | SQL Interview Questions and answers for experience
SQL Server | DateTime Calculation in sql | Sql Server Interview Part 30
dynamic pivot in sql | sql server interview question and answer part 23
SQL Server Interview Questions With Answers @CodingKnowledge
real time sql interview questions | CTE with ROWNUMBER in sql | Sql Server Interview | sql Part 9
Комментарии