Doubt in 19th question - Distinct for Firstname is incorrect I believe. The question was to display all the employees having salary btw 30 and 35 so both 'Yashika' were supposed to get displayed as one of them has 32 and other one has 34 salary.
@k98703 жыл бұрын
Hey subhashish,I completed your java programming questions series & now doing SQL for a quick recap..from your java programming series I am getting most of the questions in interview...thanks for it... subscribed,,,😊
@SoftwareTestingAndAutomation3 жыл бұрын
I am glad to hear that 😊 share it with your friends.
@omthakurgulshan5342 жыл бұрын
I can't found java programming question answer . Please help
@k98702 жыл бұрын
@@omthakurgulshan534 Check in his playlist section,total 32 java programming questions are there
@705chacko3 жыл бұрын
Watched both videos start to finish in one sitting. Very good job Subhasish Mishra.
@SoftwareTestingAndAutomation3 жыл бұрын
Thank you 😊
@rajivkrishnasamy9519 Жыл бұрын
Really superb bro Nth highest salary query is different approach thank you
@SoftwareTestingAndAutomation Жыл бұрын
So nice of you.
@rajivkrishnasamy9519 Жыл бұрын
@@SoftwareTestingAndAutomation in hexaware interview @april 14 I had written this query but the interviewer asked me is it working
@baan12213 жыл бұрын
Thank you so much for this video. This was the fastest recap on SQL commands and queries. very useful for QA interviews.
@SoftwareTestingAndAutomation3 жыл бұрын
I am glad, this is helpful. share it with your friends :-)
@snowguo17862 жыл бұрын
Thank you, all the questions are clear! I am able to find my mistakes from your questions
@SoftwareTestingAndAutomation2 жыл бұрын
Great !! Keep learning and sharing with your friends 😊
@kunalmalpure79334 ай бұрын
Thank you so much i have learn from this lot . it will be very helpful for me for the interview.
@swapnilsawarkar34082 жыл бұрын
Very helpful sir thanks.
@SoftwareTestingAndAutomation2 жыл бұрын
Glad to hear that!! Keep learning and sharing with your friends 😊
@Abhishekrajducat Жыл бұрын
thanks sir cleared more concept
@pritibarathe91932 жыл бұрын
Thank you so much... nicely explain all the queries... initially I find it very hard now it's seems to b easy...🙂👍
@SoftwareTestingAndAutomation2 жыл бұрын
Thank you !!Keep learning and sharing with your friends 😊
@kavithareddy55722 жыл бұрын
Explained very clear 🙏
@SoftwareTestingAndAutomation2 жыл бұрын
Glad to hear that!! Keep learning and sharing with your friends 😊
@lkkota416 ай бұрын
thanks for your effort
@avinaashkr173 жыл бұрын
Very Useful Video One Of The Best SQL Question Video In KZbin.. Thanks A Lot.
@SoftwareTestingAndAutomation3 жыл бұрын
Thank you!!! Keep learning new things 😊
@harmeetheir62072 жыл бұрын
very helpfull thankyou.
@SoftwareTestingAndAutomation2 жыл бұрын
Glad it was helpful!! Keep learning and sharing with your friends 😊
@rohitpardeshi70843 жыл бұрын
Very informative video. Thank you.
@SoftwareTestingAndAutomation3 жыл бұрын
You are welcome. Keep sharing with your friends 😊
@vaibhavmane4902 Жыл бұрын
Very useful ❤️
@SoftwareTestingAndAutomation Жыл бұрын
Glad it was helpful!
@gaya3533 жыл бұрын
Hi Subhasish, I had an interview yesterday and I was asked this question on SQL. Could u pls help me with the answer. Qn: How to delete duplicate records from a table?
@SoftwareTestingAndAutomation3 жыл бұрын
Try this - DELETE FROM EMPLOYEE WHERE EMP_ID NOT IN(SELECT MAX(EMPID) AS MaxEmployeeID FROM EMPLOYEE GROUP BY FirstName, LastName, Country);
@divyakandy3 жыл бұрын
@@SoftwareTestingAndAutomation max (emp ID) returns maximum value of the Employee ID right, should we use the count(EMP ID)?
@prathyusha7043 жыл бұрын
Can you write this query 'Write a Query to fetch company name of the lady employee who is getting highest salary?' with out full join keyword like you told before inner join(31:52)
@SoftwareTestingAndAutomation3 жыл бұрын
Try this, SELECT COMPANY_NAME FROM EMPLOYEE emp, COMPANY cmp where emp.EMP_ID=cmp.EMPLOYEE_ID and emp.SALARY in (SELECT MAX(SALARY) FROM EMPLOYEE where gender='Female');
@vinaybijalgaonker44943 жыл бұрын
Good question
@SoftwareTestingAndAutomation3 жыл бұрын
Thank you !! keep sharing with your friends 🙂
@prajnadayalan5353 жыл бұрын
Super make more videos🎉🎉🎉
@SoftwareTestingAndAutomation3 жыл бұрын
Sure 😊
@mr.perfect1205 Жыл бұрын
Plz add simple queries why you are making hard in nth max we can make use n-1 is enough
@abhaygolhar78173 жыл бұрын
Can we use dense_rank in 23rd question... Select * from(select employee. *, dense_rank over(order by salary desc) as highestsalary from employee) where highestsalary=3
@gitikagujrathi48533 жыл бұрын
There is two table one is employee table it will consists of emp_id, emp_name, emp_salary, and dept_id columns and another table consists of dept_number, dept_name to print emp_name, emp_salary, dept_name of an employee whose salary is maximum plz tell how to write query of this question. SIR PLZ TELL ME THE ANSWER .
@SoftwareTestingAndAutomation3 жыл бұрын
First you need to join both the tables using a primary key then you can use the same query given in the video to find maximum salary. If you don't know which is the primary key you can ask it to the interviewer. Below example you can try:- SELECT a.employee_id, a.first_name, a.last_name, a.salary, b.department_name FROM employees a, departments b WHERE a.salary IN (SELECT MAX(salary) FROM employees) AND a.department_id=b.department_id ;
@gitikagujrathi48533 жыл бұрын
Ok thank you
@riteshroy49404 жыл бұрын
Great sir
@SoftwareTestingAndAutomation4 жыл бұрын
Thank you :-) keep learning new things.
@ChandraSekhar-kl9ue3 жыл бұрын
how for sql queries requires in testing plz explain
@SoftwareTestingAndAutomation3 жыл бұрын
Testers should have good SQL knowledge to perform data base testing and it is basic skill for QA.
@butterfly79763 жыл бұрын
Very nice video
@SoftwareTestingAndAutomation3 жыл бұрын
Thank you 😊
@akashsonawane6503 жыл бұрын
can you give a 2 high salary from each group
@SoftwareTestingAndAutomation3 жыл бұрын
Try this - Select Department,Max(Salary) From (Select E1.Department,E1.Salary From Employee E1,(Select Department,Max(Salary) as Salary From Employee group by Department) E2 Where E1.Department = E2.Department And E1.Salary
@ANRR995 Жыл бұрын
Update command I do rarted update table name set sal=36000 wher emp_id ;
@famousbirds88002 жыл бұрын
How to find nth highest salary??
@ANRR995 Жыл бұрын
Moru of the name is same retyo now
@ChandraSekhar-kl9ue3 жыл бұрын
everything is in blur not able to view
@nikhilchougule57803 жыл бұрын
Query to get salary of all employees except Ram
@SoftwareTestingAndAutomation3 жыл бұрын
SELECT salary FROM Employees WHERE NOT employeename='Ram';
@mohamedkaleemullah1161 Жыл бұрын
This video was very useful..
@SoftwareTestingAndAutomation Жыл бұрын
Glad it was helpful!
@sivaranjanis90192 жыл бұрын
Great sir
@SoftwareTestingAndAutomation2 жыл бұрын
Thank you!! Keep learning and sharing with your friends 😊