Hi in 06:25 you mentioned wrong salary as the highest. The highest one is 159000 but accidentally you termed 125000.
@venkateswarluguditi84612 жыл бұрын
He says second highest salary..
@maheshmalekar66402 жыл бұрын
@@venkateswarluguditi8461 Sir said in the video highest sal is 125000 and second highest is 112000 that's not correct Actually, 159000 is the highest and 125000 is the second highest.
@shontyvlog2 жыл бұрын
Never give this ans in interview, this is not correct, ans should be like below. SELECT TOP 2 * FROM ( SELECT ROW_NUMBER () OVER (ORDER BY Salary DESC) AS RNUM1,* FROM TBL_ORDER ) AS TBL1 WHERE RNUM1 = 2
@borntoplay58482 жыл бұрын
For 2nd highest salary Select * from emp where salary=(select max(salary) from emp where salary < select max(salary)from empl));
@abhishektiwari20922 жыл бұрын
@@shontyvlog hi
@manasasahoo64852 жыл бұрын
Thank u so much for this vdo bro ❤️ from Puri, Odisha Jay Jagannath 🙏
@PatelBhaveshgo4glory2 жыл бұрын
We can get any salary(2nd - 3rd - 4th) by using a simple query. For example, If you want the second highest salary then n = 2 SELECT * FROM `employee` ORDER BY salary DESC LIMIT 1 OFFSET (n-1);
@step3roll8052 жыл бұрын
For 2nd highest salary Select* from employee where salary=(select max(salary) from student where salary
@angrezikguruji56912 жыл бұрын
Yesh
@nileshmishra3972 жыл бұрын
Select* from emp where esal( select max(esal) from student where esal (select max(esal) from student) ;
@sadanandjori79522 жыл бұрын
You can use this - select e_salary from employee order by e_salary desc limit 1,1;
@mukulupadhyay46562 жыл бұрын
Very helpful video watched your OOPS video too thanks a lot.🙏
@MEGAMINDLIVE2 жыл бұрын
we can also delete an entire row of a table by using the DELETE command. so row sequence is the main difference between DELETE and TRUNCATE.
@mkbproduction2 жыл бұрын
Along with The very major difference is rollback can't be applied on truncate And truncate is faster
@shreyash93572 жыл бұрын
For second max salary Select * from tblemployee where salary=(select max(e_salary) from tblemployee where e_salary
@shrutikorde38402 жыл бұрын
I like your way of teaching or guiding...... It really understandable..Thanks Sir🙂
@Kxlifts2 жыл бұрын
Thanks sir well explained , its to useful for me
@mkbproduction2 жыл бұрын
Select max(select salary from employee where salary< max(salary)) as 2nd_max_salary;. This is also correct na??
@awakenedsouls32062 жыл бұрын
No ! First we will determine the inner query that will be select max salary from emp This way it will be first executed and max salary will be determined Then we will give an outer query That says Select max salary from emp where salary ( select max salary from emp ) This is the complete query as the solution In this first we determine the max salary and then we exclude it with the not equal to sign Now , in this way , if the max salary excluding the highest salary will be selected , that will be the second highest salary itself
@mkbproduction2 жыл бұрын
@@awakenedsouls3206 thanks
@gauravgholave2 жыл бұрын
Select max(e_salary) from employee where e_salary not in (select max(e_salary) from employee
@cseengineer27242 жыл бұрын
Sir How to prepare for interview to power programmer sir
@Lifefocus-zg8ng2 жыл бұрын
Thx @mridul bor keep it up,good job👍
@bhausogadade76592 жыл бұрын
Second highest salary Select max(salary) from emp where
@amankumaramar2712 жыл бұрын
Thank you so much sir g ❤️
@CodePressAcademy Жыл бұрын
Thanks a lot
@only_soulful_lyrics2 жыл бұрын
You explained second highest salary wrong highest is 159000 and second is 125000
@cseengineer27242 жыл бұрын
Any paid course available sir give me some ideas
@abhishek_j262 жыл бұрын
Thanks.👌👍
@arpitatiwari30732 жыл бұрын
Nice 😊😊
@karthikeyakagan44332 жыл бұрын
Select won't comes under the DML... Select comes under DQL (Data Query Language)... First prepare well before doing vedios on SQL
@mkbproduction2 жыл бұрын
The SELECT statement is a limited form of DML statement in that it can only access data in the database. It cannot manipulate data in the database, although it can operate on the accessed data before returning the results of the query.
@ApnaRishabh2 жыл бұрын
First learn the spelling of "Videos" well before commenting in any video.
@funcentral81992 жыл бұрын
@@ApnaRishabh💀🤣🤣
@I_am_smooth_as_butter2 жыл бұрын
@@ApnaRishabh 😂😂😂😂
@rutukeshkashid50582 жыл бұрын
DRL NOT DQL🤣🤣
@pandu33202 жыл бұрын
Hello sir. I have registered for Accenture Innovation Chllenge. Can you please suggest me some tips to win this challenge?
@Deepratan27 Жыл бұрын
What is natural and cross join this is also ask by interviewer
@TheBalanceLife Жыл бұрын
Select command does not come under DML sublanguage come under DQL sub language
@amrutapatil22512 жыл бұрын
Thank you
@vijendrabijalwan79362 жыл бұрын
in case we wants to find 5th highest salary without subquery so can i find
@SouravGhosh-nm8ph2 жыл бұрын
select top 1 * from(select top 5 salary from employees order by salary desc) order by salary asc;
@NikhilKumar-yc5rt2 жыл бұрын
Nice explanation
@simranbanwait2 жыл бұрын
thanks bhai
@sankeerthananamoju2 жыл бұрын
good one
@dark_legions22272 жыл бұрын
Awesome..
@swatichauhan32602 жыл бұрын
Can i get some real scenario based questions. I want to know what type of queries are given and how to solve them
@surajashware50582 жыл бұрын
Telegram link not working.. brother
@piyushpatil58982 жыл бұрын
Bhaiyya Oracle Database 11G ka installation me problem aa raha hai please koi solution do na
@Vinay-lb8px2 жыл бұрын
Sir 21st i have cognizant technical interview plz make video sir
@technofreak-tl5zd Жыл бұрын
Telegram link is not working urs kindly send again
@Womenhealthchronicles2 жыл бұрын
What type of jobs can we apply for after learning sql
@diya75022 жыл бұрын
You can go for data analytics field
@nileshmishra3972 жыл бұрын
U cal also learn in sql Html Basic than u can also apply in web developer for small it company
@Cricket-Adda....2 жыл бұрын
Thank you bhai
@SmartSimplified12 жыл бұрын
Keep growing 👍
@jiteshtakkar88132 жыл бұрын
nice
@mahalakshmi42202 жыл бұрын
Thank u sir❤
@agriculture.islife.61492 жыл бұрын
please be make sure dont go this fast its to fast unable to understand you
@Localplacesfromlocalpeople2 жыл бұрын
above questions - -Rdbms -Difference between order by and group by -pattern in a colm
@nileshmishra3972 жыл бұрын
If u all are question ans available from utub Or google
@sachinghutke97112 жыл бұрын
I have a scenario based question could u solve
@BTCIVArnavGaner2 жыл бұрын
my question here is that where cannot be used on aggregated data so how is it used here can anyone explain this?
@NeerajSingh-ns7ts2 жыл бұрын
civil
@dipankarsantra77852 жыл бұрын
Telegram ade nahi ho raha he.
@autojagatwithvineet30532 жыл бұрын
👍👍👍
@brijesh94522 жыл бұрын
Sir clr nhi aata h jo typ krte h?
@skmiraj63392 жыл бұрын
Bhai Python ka v upload kardo
@SmartSimplified12 жыл бұрын
Sure
@skmiraj63392 жыл бұрын
@@SmartSimplified1 thank you bhai
@ankushgupta8778 Жыл бұрын
😮😮
@v.t.s.ramthulasi10932 жыл бұрын
bro pls snd this question and answer pdff
@jitendrajaintwal65032 жыл бұрын
Dml ka to sab aata h pr baaki ni
@hazardopop73782 жыл бұрын
Tho jaake padh na
@rojalibiswal89752 жыл бұрын
Highest salary to 159000 hay app125000 kiun bole
@Atulnavadiya2 жыл бұрын
Aiveyi video bna diya lagta hai isne.
@vasantimisal38702 жыл бұрын
hi can i get pdf of these question n answers?
@Deepratan272 жыл бұрын
group by and DBMS तो हवा में ही उड़ा दिया
@floridan12382 жыл бұрын
5:44 galat h
@shekharkarande98662 жыл бұрын
tjik se banaya kr vid
@Sonamkhan2 жыл бұрын
Hello sir, 14may ko mera interview hai. C# Dot Net K LIYE profile select hui h kya question puchenge kuch b nhi malum pls help me.
@sahilchauhan24892 жыл бұрын
Yatharthrti mai kya
@theindiatech84612 жыл бұрын
Sir python ke bhi important question per bhi video bana do 🙏please
@SmartSimplified12 жыл бұрын
kzbin.info/www/bejne/eZ3Xp6p4mb6UiLs
@AmanSharmaSem12 жыл бұрын
Can anybody help me to get job based on sql?
@Harsh-wz7lw Жыл бұрын
Konse state se ho?
@AmanSharmaSem1 Жыл бұрын
@@Harsh-wz7lw uttar pradesh
@Harsh-wz7lw Жыл бұрын
Apps or websites hoti h unpe apna resume daal do , mil jayegi koi na koi company
@Harsh-wz7lw Жыл бұрын
@@AmanSharmaSem1 m Chandigarh se hu agr yha ke hote to naam bta deta companies ke pr U.P se Chandigarh itni door kya job krni Vhi mil jayegi
@techxtreme76302 жыл бұрын
hello sir can you help me for a query I have a 3 column in one table like C1, C2, C3 I want all column values add in only one column C1 and also replace special character as space
@abhijeetchougale38422 жыл бұрын
Select column 1+'-'+cloumn2+'-'+column3 as column from table
@madhavchavan78572 жыл бұрын
PLEASE CHECK QUE .5 THIS WRONG ANS
@prateeksaini72682 жыл бұрын
share the ppt man
@sannswaghmode2 жыл бұрын
Don't refer this video most of the concept explained in this video are wrong so don't misguide. Acquire proper knowledge before making video
@swatichauhan32602 жыл бұрын
Is someone working on sql? Plz help me
@Rahulkumar-ij6sl2 жыл бұрын
Yes i am ...you can ask me any time
@swatichauhan32602 жыл бұрын
@@Rahulkumar-ij6sl i want to know how excel n sql works together like how to bring data to sql and after formatting, how to export it
@DhanshreeTalekar-ld2tr Жыл бұрын
Koi job hogi to dilva do
@YesweMiddleclass2 жыл бұрын
Maximum salary galat hai
@nileshmishra3972 жыл бұрын
Select*from emp where esal=max(esal) from emp student where esal