Part2: SQL Query Interview Questions & Answers

preview_player
Показать описание
Topic : SQL Query Interview Questions & Answers

#########################
Udemy Courses:
#########################

Manual Testing+Agile with Jira Tool
************************************

Selenium with Java+Cucumber
********************************

Selenium with Python & PyTest
********************************

Selenium with python using Robot framework
****************************************

API Testing(Postman, RestAssured & SoapUI)
*****************************************

Web & API Automation using Cypress with Javascript
********************************************

Playwright with Javascript
**************************

Jmeter-Performance Testing
************************

SDET Essencials(Full Stack QA)
*************************

Appium-Mobile Automation Testing
************************************

Java Collections
*****************

Python Programming
*********************

Cucumber BDD Framework
***************************

Protractor with Javascript
***************************

####################################
Youtube Playlists:
####################################

Manual Testing & Agile
***********************

SQL
*************************

linux & Shell Scripting
**********************

Java
**********************

Selenium With Java+Cucumber
********************************

Python
********************************

Selenium With Python,Pytest&Behave
***************************************

Selenium With Python Using Robert Framework
(Web&API Testing)
*************************************************

API Testing (Postman,SoapUi,&Rest Assured)
**********************************************

Mobile App Testing Appium
****************************

Performance Testing Jmeter
*******************************

Maven,Jenkins,Git,Github,CI/CD
*******************************

SQL,DB Testing&ETL,Bigdata
*******************************

JavaScript Based Automation Tools
********************************

Selector Hub Tools
********************

GraphQL
******************

Cypress API Testing
********************

Cypress Web Testing
**********************

Playwright with Javascipt
**************************
#SQLInterview
#SQLQuery
#SQLQuestions
#SQLAnswers
#SQLCoding
#SQLChallenges
#SQLPuzzles
#SQLExpert
#SQLSkills
#SQLTips
#SQLTricks
#SQLSolutions
#SQLExercises
#SQLDeveloper
#DatabaseInterview
#DatabaseQuestions
#DatabaseAnswers
#SQLServerInterview
#MySQLInterview
#OracleInterview
#PostgreSQLInterview
#DBMSInterview
#DataAnalysisInterview
#DataManipulation
#DataQuery
#SQLPerformance
#SQLNormalization
#SQLJoins
#SQLSubqueries
#SQLGroupBy
#SQLAggregations
#SQLViews
#SQLIndexes
#SQLTransactions
#SQLConstraints
#SQLOptimization
#SQLStoredProcedures
#SQLFunctions
#SQLDataTypes
#SQLDataModeling
#SQLInterviewPrep
#SQLInterviewTips
#SQLQueryTuning
#SQLQueryExamples
#SQLQueryProblems
#SQLInterviewSuccess
#SQLInterviewSkills
#SQLQueryLanguage
#SQLQuiz
#SQLInterviewSeries
Рекомендации по теме
Комментарии
Автор

till now i thought we can join the tables only by using joins but you explained it using sub query. easy to understand concepts. thanks a lot

jagadeeshkumar
Автор

Q.no. 19-
salary = salary + (salary*(10/100))
In order to update salary by 10%.
Surely it was done by mistake.🙂

ravirajvhetam
Автор

Your way of teaching is excellent sir, you are making us to understand the concepts very well ...thanks a lot...keep doing it ever sir...

divyasundaram
Автор

Your teaching style is very excellent and conceptual.
Can u share the latest step by step selenium video.. Either how can i join the your selenium batch from scratch ..

nirajjha
Автор

Sir in question 19 it should be salary = salary+ (salary*10/100)

varshasharma-xszl
Автор

You need to make a correction to the table id in Ques.18 where you specify "Location_Id" as the table name where it should be just "Location". Also correct Ques. 19 the word "where" in the query sample. Very good examples of the various query formats!

robertovermier
Автор

i thought we can join tables only using joins OMG thank you so much !

Peace-mxrz
Автор

Hi Sir, on 19th question, they are asking update managers salary is 10%,

I think the query is on where condition is:

WHERE salary= salary+(salary*10/100)

Am i correct sir?

nsnreddy
Автор

Q. 19 set salary = salary + salary*10/100

Avadhut-ndyz
Автор

Sir in 19 question.
U use formula salary = salary*10/100
Suppose deptid =20 whose salary 800
Using above formula we got 80 only, and it wl be updated 80 only instead of total. 880
Can we use here set salary = salary+salary*10/100.
I wl wt ur answer sir.. 🙏

nirajjha
Автор

Perfect explanation with perfect tone... 🙏 God bless you more

scrapyscrapy
Автор

Sir. Thank you for all your efforts. please make a video for rest API interview questions with postman.

lokeshkumarverma
Автор

Thanks for showing the tables, the question and the answer one one slide 😊

muhammadzaakirmungrue
Автор

Thanku Sir for your wonderful Support.

priyankagupta-siho
Автор

Question 17, 18 we can use join it's much easier.

harishankar
Автор

For interviews, is this approach valid or we have to go via joins? I find this better than Joins tbh

francodsouza
Автор

thank you so much sir.
.
This questions are very helpful. 😊

rajprajapati
Автор

thank u so much Sir..i understand each concept by using sub queries

rainbowplayz
Автор

ques 19 ans is -> update Employee set salary =salary*1.1 where job_id=(select job_id from job where function='MANAGER' oR
update Employee set salary =salary*110/100 where job_id=(select job_id from job where function='MANAGER'

irfansayani
Автор

@8.59, Q16. Is this correct for getting department wise max salary?
select emp_id, salary, dep_id from Employee group by dep_id having Max(salary)

janakiyeluripati