ETL Testing | Tricky SQL queries | Second Highest Salary department wise
ฝัง
- เผยแพร่เมื่อ 22 ธ.ค. 2024
- #etlqalabs #etl #sqlinterviewquestionsandanswers #linux
ETL Testing | Tricky SQL queries | Second Highest Salary department wise
Playlists for your reference:
ETL Testing Tutorial for begginers and advanced level :
• ETL Testing
SQL Tutorial for begginers and advanced level :
• SQL Tutorial for Begin...
Linux Tutorial for beginners and advanced level:
• Linux for Testers
Data Warehousing Tutorial for beginners and advanced level:
• Data Warehousing concepts
Hey Guys,
If you’re enjoying this video and you’d like to support this channel, please do to consider subscribe this channel! It might seem small, but hitting that subscribe button helps alot and means more contents in future.
Sir if source system is in CSV and Excel file or in different db how can I validate the data iscorrect or not? Before migration and after migration?
Please check my python pandas series, i have covered file validation there.
Thank you Sir 🙏
Sir, how can we update the second-highest salary department-wise by 1000? Please answer 🙏 I am trying to solve this query for the week.
Hello Sir,
Can you please make a video on this?
We have Team1 Team2 Winner columns in a table called matches:
Team1 Team2 Winner
Ind Aus Ind
Aus NZ NZ
Nz SA SA
SA ENG ENG
ENG PAK PAK
1) How many matches are played By IND
2) How many matches were played
3) what are the teams where at least matches were played.
4) what are the teams where at least matches were won.
Nicely explain.
This can be achieved by dense_rank also
How to calculate percentage of student marks ?
select * from(
select salary,deptno,dense_rank() over(partition by deptno order by salary desc)rnk from emp)
where rnk=2;
I also find this query much easier.
Can you explain this to me please??
First view