Subscribed!! Awesome Channel and very good explanation! Definitely learnt from this
@SivaAcademy3 жыл бұрын
Thank you 💐
@bhaskaro2 жыл бұрын
Thanks for explaining different methods to find the N'th max salary, also please make a video which methods of these are efficient.
@mukeshchitte38704 жыл бұрын
Great, happy to listen to u, thanks a lot 🙂
@SivaAcademy4 жыл бұрын
My pleasure, thank you 💐💐🙏
@Ram-tf8ir7 ай бұрын
Great work❤
@abheshkumar22324 жыл бұрын
Write a procedure to update salary 10% and select employees. Without using parameters.
@sansurvase22 жыл бұрын
You are Amazing ! 👏👏🙌
@SivaAcademy2 жыл бұрын
Thank you bro
@manideepkumar9593 жыл бұрын
1st rownum u explained well, later ur simply typing something and not explaining what r u writing,in subquery why r u writing b.sal>=a.sal?
@anushaa14714 жыл бұрын
Sir, thank you for this GREAT VIDEO👍. Could you please elaborate the method 3 approach .? Why we are taking count of distinct salary there?
@AparnaBL3 жыл бұрын
Lady since there is a duplicate salary 10000. He mentioned twice same point 🤔🤔🤔🤔🤔😏
@sujaa10002 жыл бұрын
Thanks again Siva!
@SivaAcademy2 жыл бұрын
My pleasure!
@deepakranjanmishra34 жыл бұрын
Sir very good explanations.Thank you so much for your extended support to make it.Much appreciated.
@SivaAcademy4 жыл бұрын
Welcome 🙏💐💐
@crazycom98073 жыл бұрын
Thanks a lot for such a detailed explanation..
@SivaAcademy3 жыл бұрын
Thank you
@manikandanpanneer16505 ай бұрын
Thanks Dear Bro 🙏🙋♂️😍
@SivaAcademy5 ай бұрын
Welcome bro 🙏
@rajasekarp78732 жыл бұрын
👍Super bro👏
@SivaAcademy2 жыл бұрын
Thank you
@devinenibalaji90382 жыл бұрын
Hi siva , Request to pls clearly explain the subquery method
@kapilsrivastava80073 жыл бұрын
Excellent answer
@SivaAcademy3 жыл бұрын
Welcome bro 💐
@SatyendraSingh-ul5iq3 жыл бұрын
Thanks shiva, please let us know that difference between force view and inline view.
@SivaAcademy3 жыл бұрын
Ideally we should not compare both, posted both cocepts seperalty
@pra1bhus13 жыл бұрын
Great content. I don't know who is the one disliked this video
@SivaAcademy3 жыл бұрын
Thank you 💐
@vsr17274 жыл бұрын
Thank you siva👍
@SivaAcademy4 жыл бұрын
Welcome
@minicat19833 жыл бұрын
Or use nth_value function Select distinct nth_value(sal,5) over (order by sal desc range between unbounded preceding and unbounded following) rn From emp;
@sravankumar36742 жыл бұрын
Hi .... Any video which will return multiple rows using object type in function?
@tshende022 жыл бұрын
Thank you so much
@SivaAcademy2 жыл бұрын
You're most welcome
@Pmreedy8014 жыл бұрын
Great sir ,😍😍
@SivaAcademy4 жыл бұрын
Thank you 💐
@dfhwze4 жыл бұрын
Can you also do it using match_recognize or a recursive function?
@PrayasDhanbadBasicBuilder2 жыл бұрын
Seems fetch first don't work in 11g. So kindly do mention the oracle version. If possible in each video.
@SriLife24 жыл бұрын
Can u do the same to find group wide nth sal without rank, analytical, rownum functions.
@SivaAcademy4 жыл бұрын
No, for finding group wise salary, analytical function is the best approach
@ravipatisrikanth83314 жыл бұрын
Sir ,how to find difference between salaries in emp table
@SivaAcademy4 жыл бұрын
Differences between what two salaries??
@ravipatisrikanth83314 жыл бұрын
No two salaries, you can 5 or 6 salaries like 2000,1800,1600,1000,800
@ravipatisrikanth83314 жыл бұрын
I know how to find out the difference between two salaries but I don't know how to find out more than two salaries
@ravipatisrikanth83314 жыл бұрын
One guy asked in my interview
@ravipatisrikanth83314 жыл бұрын
So please write a query sir
@sumanthreddy11392 жыл бұрын
sir can i have latest recorded videos if i pay u the money..
@SivaAcademy2 жыл бұрын
Hi Sumanth, no need to pay, I was not feeling good last couple of weeks, will be start posting from next week onwards, please stay tuned
@sampurnabhattacharjee97482 жыл бұрын
will this query work for the above question Select Salary FROM(SELECT DISTINCT SALARY FROM EMPLOYEE ORDER BY Salary DESC FETCH FIRST 2 ROWS ONLY) ORDER BY SALARY ASC FETCH FIRST 2 ROWS ONLY
@thulasireddy45143 жыл бұрын
Sir oracle full course unda
@SivaAcademy3 жыл бұрын
Not yet bro
@kumarbrajesh50514 жыл бұрын
How to count Number of column in a table without using metadata in Sql
@SivaAcademy4 жыл бұрын
Will answer in upcoming video in this series, please stay tuned.
@ashokkumar-hm5on Жыл бұрын
select salary rank() over(order by salary desc),DENSE_RANK()OVER(order by salary desc)from employees not working
@feyie2 жыл бұрын
Hi Siva, can u help me? I need to get the sum of the total value of each element that's grouped per pay date. And I need to display it in my report as one row . Here's the sample data (4 rows): Column1: Pay date 15-Jan-2022 30-Jan-2022 15-Jan-2022 30-Jan-2022 Column2: element Pay allowance Pay allowance2 Pay allowance Pay allowance2 Column3: total 500 300 500 300 I used a case statement but it doesn't work. SELECT a.personid, TRUNC(TO_DATE(a.pay_date, 'DD-MON-YYYY')) pay_date CASE WHEN a.element LIKE 'Pay Allowance%' OR 'Pay Allowance2' THEN 'Pay Allowance Benefit' ELSE NULL END as Pay_Allowance_Benefit , SUM(a.total) FROM (SELECT tbl4.personid, TRUNC(TO_DATE(tbl3.val_date, 'DD-MON-YYYY')) pay_date ,tbl2.name element ,tbl1.value total FROM tbl1 ,tbl2 ,tbl3 ,Tbl4 Where clause) a WHERE a.personid = :p_id GROUP BY a.element , a.person_id , TRUNC(TO_DATE(a.pay_date, 'DD-MON-YYYY'))