No video

3 SQL Queries Asked in Interview for Business Analyst - Solved

  Рет қаралды 58,984

techTFQ

techTFQ

Күн бұрын

Пікірлер: 111
@sidheshbhambid4023
@sidheshbhambid4023 11 ай бұрын
No one can make SQL look so easy! Totally worth learning SQL from your recent boot camp cohort 2. The way you approach and solve complex queries by breaking them down into smaller parts was the most important thing I learned from you! ♥ Keep bringing such content, this is what raises my confidence even more in SQL!! 😅🙌
@rishabh_fitness3273
@rishabh_fitness3273 11 ай бұрын
hands down!! what a genius you are ! specially the third problem and the explaination just wow,,, taufiq sir because of you , i have cleared many concepts of sql...may god bless you taufiq
@yi-lehung6311
@yi-lehung6311 11 ай бұрын
Such great SQL content videos! I can always learn things from your videos. Shoutout to techTFQ!
@techTFQ
@techTFQ 11 ай бұрын
Happy to hear that! Thank you so much
@ManpreetSingh-tv3rw
@ManpreetSingh-tv3rw 11 ай бұрын
Query 3 ,MSSQL with echo as (select state,candidate_id,count(candidate_id) as seatcount_byid from results_tab group by state,candidate_id), rt as ( select *,dense_rank() over (partition by candidate_id order by seatcount_byid desc) as position from echo), final1 as (select * from rt where position
@fenix6627
@fenix6627 10 ай бұрын
After a week of watching your lessons, I was able to solve these queries for myself, thanks a lot.
@techTFQ
@techTFQ 8 ай бұрын
Great 👍
@kunalkumar-hl6gv
@kunalkumar-hl6gv 11 ай бұрын
this is not intermediate level but yet it is very useful there are so many things to get from this video
@techTFQ
@techTFQ 11 ай бұрын
good to know
@vishalgoswami7512
@vishalgoswami7512 11 ай бұрын
what level is this then?
@rohankhubchandani3694
@rohankhubchandani3694 11 ай бұрын
@@vishalgoswami7512i would say it’s advanced
@ST-actual
@ST-actual 10 ай бұрын
Super useful. I’m relating everything I learn about SQL to New Relic which is what my company uses for observability.
@techTFQ
@techTFQ 8 ай бұрын
Thank you very much 😊
@vasimahamadshaikh3730
@vasimahamadshaikh3730 11 ай бұрын
Toufiq bhai what explains yaar . Everyone should understand what you want to give us from this video.great Bhai
@techTFQ
@techTFQ 11 ай бұрын
Thank you so much bro 😀
@dingaroo2003
@dingaroo2003 6 ай бұрын
Greetings brother, from Singapore. As a working adult who is doing self-study, such exercises with step-by-step solutions are extremely priceless! Thank you Taufiq.
@maghy_kethychannel
@maghy_kethychannel 11 ай бұрын
Hi toufiq really hats off to your afforts and explanation.plz start an exclusive course on data analytics.
@techTFQ
@techTFQ 11 ай бұрын
Thank you bro, I will try my best
@sakshipandey5137
@sakshipandey5137 7 ай бұрын
Excellent explanation!!💯 Thankyou for making our life easy. God bless you!
@sivagowthu859
@sivagowthu859 11 ай бұрын
1st question my way of approach with cte as( select * from candidate c inner join results r on c.id=r.candidate_id) select party,count(*) as no_of_seats from( select *,dense_rank()over (partition by constituency_id order by votes desc) as rn from cte ) dt where rn=1 group by party
@saiswaroop3570
@saiswaroop3570 11 ай бұрын
Hi, toufiq your videos on SQL are very good and your explanation is very detailed. It would be helpful if you post more content on SQL like this and share some roadmaps how we can grow with SQL as primary skill. Please suggest some good certification courses for SQL that are available online
@sravikav1018
@sravikav1018 5 ай бұрын
It's really awesome explanation and this is the best SQL channel i have ever got,thanks a lot for sharing the knowledge. Looking forward for the more videos with SQL examples.
@ambeshpandey8937
@ambeshpandey8937 2 ай бұрын
First one my approach with cte as(select *, min(votes) over (partition by constituency_id) as lowest_vote from result), cte2 as( select *, (votes-lowest_vote)as vote_diff from cte), cte3 as ( select *, row_number() over (partition by constituency_id order by vote_diff desc) as rnk from cte2) select concat(c.party,' ',count(*)) as party_seats from cte3 join candidate c on cte3.candidate_id=c.d where rnk=1 group by c.party
@user-ks5nx9jk6u
@user-ks5nx9jk6u 6 ай бұрын
Thank you Toufiq bhai, the way that you explained queries is so good and i hope who don't have any knowledge on sql they will easily to understand
@mounikathouda
@mounikathouda 3 ай бұрын
Explaining step by step clearly. Good Video 😊
@user-kp6ev3ls5c
@user-kp6ev3ls5c 11 ай бұрын
The way of approach is easy to understand and follow , Thank you so much.
@devarapallivamsi7064
@devarapallivamsi7064 3 ай бұрын
I am seriously gonna laugh at people if they opt for any paid course of SQL even after coming across your channel. Hands down I would choose you over anyone to learn SQL from.
@vigneshwarannallasamy
@vigneshwarannallasamy 11 ай бұрын
Hi Thoufiq, really loved your videos and learned a lot from you. It will be beneficial if you can share the Cheat Sheet of SQL syntaxes.
@riasingh11
@riasingh11 3 ай бұрын
You are the best tech teacher
@pravinbhojane89
@pravinbhojane89 8 күн бұрын
Nicely explained 🙌🏻
@fathimafarahna2633
@fathimafarahna2633 11 ай бұрын
You are as always best 💯 God bless
@techTFQ
@techTFQ 11 ай бұрын
Thank you so much 😀
@ganeshvbidwe
@ganeshvbidwe 11 ай бұрын
Oh great video and insightful Upload more video about stored procedure and udf functions with exception handling
@techTFQ
@techTFQ 11 ай бұрын
Thank you and noted bro
@nikhilreddy4582
@nikhilreddy4582 11 ай бұрын
Bro u r a gem... Keep doing many more contents. This help me understand to solve the queries in a more better way. As I have also attempted these queries but failed to solve it. These are from hacker rank got it in a meesho 1st round. These video help me understand much better. Thanks a lot broo...
@F_A_R_man
@F_A_R_man 7 ай бұрын
Thanks for efforts. Your content is very useful 🥰
@avinashpratapsingh3875
@avinashpratapsingh3875 9 ай бұрын
Hi @techTFQ in the second query you have use group by clause on alias customer and status, but as per execution order group by is executed before select, so when I tried running query you explained it throws me error invalid identifier, Cn you please let me know what to do. I am using Oracle SQL Developer
@lalitak9404
@lalitak9404 11 ай бұрын
Here is the query with out window function : Select concat(party,' ',count(*)) from (select constituency_id,max(votes)as votes from candidates c inner join results r on c.id=r.candidate_id group by constituency_id)as temp inner join results r on temp.constituency_id=r.constituency_id and temp.votes=r.votes inner join candidates c on r.candidate_id=c.id group by party;
@TheDocValerian
@TheDocValerian 9 ай бұрын
This is a great video. I can only imagine how it is to solve if you had to wtite this on a simple paper as a candidate
@techTFQ
@techTFQ 8 ай бұрын
Thanks:)
@mkarvj
@mkarvj 11 ай бұрын
You are absolutely amazing sir!!!!
@brunomiguel3533
@brunomiguel3533 9 ай бұрын
Amazing stuff. Really enjoyed it and learned a lot. 5 stars!
@techTFQ
@techTFQ 8 ай бұрын
Thank you
@vermaji5220
@vermaji5220 7 ай бұрын
with cte as (select c.id, c.party,r.constituency_id,r.votes from candidates as c inner join results as r on r.c_id=c.id), cte1 as( select * , rank() over (partition by constituency_id order by constituency_id, votes desc) as rn from cte) select party, count(1) as won_seat from cte1 where rn=1 group by party
@RoopmathiGunnaubcmba
@RoopmathiGunnaubcmba 11 ай бұрын
The third one was the most challenging for me to get my head around.
@DHA508
@DHA508 11 ай бұрын
Thanks for awesome session.
@LokeshKumar-ii1or
@LokeshKumar-ii1or 10 ай бұрын
Hi Sir Please do one video for how to retrieve specific data from XML column in Oracle SQL
@HARSHRAJ-wz2rp
@HARSHRAJ-wz2rp Ай бұрын
with cte as( select candidates.*,constituency_id,votes FROM candidates JOIN results ON candidates.id=results.candidate_id ) select constituency_id,party FROM(select constituency_id,party,votes,DENSE_RANK()OVER(partition by constituency_id ORDER BY votes DESC) as "x" FROM cte) as es where es.x=1;
@ceejayachky6279
@ceejayachky6279 11 ай бұрын
You are an excellent teacher.
@krishnakantsharma8021
@krishnakantsharma8021 6 ай бұрын
Wow, you are the best🎉
@gayatribhuyan1600
@gayatribhuyan1600 11 ай бұрын
Hi,Can you make some sql interview questions for data engineers.
@techTFQ
@techTFQ 11 ай бұрын
let me see if I can find any
@newenglandnomad9405
@newenglandnomad9405 11 ай бұрын
I understand the interview questions. What I don't understand is how that political query would apply to the job. I have a friend that works in Soccer, and he's asked to query seat sales by seat type or unsold or whatever, and sends a spreadsheet with the answer. Are these interview questions like just practice sandbox type queries? Thanks for educating us.
@dkaustubh
@dkaustubh 11 ай бұрын
Great video ❤ Thanks !
@techTFQ
@techTFQ 11 ай бұрын
Glad you liked it!
@murchhanabanerjee862
@murchhanabanerjee862 6 ай бұрын
Hi Taufiq, I am your fan ! You have become the ultimate destination to clear doubts & concept. I want to share 2 sql problems which I couldn't solve in interview. How should I share ? Can't find your email in this chat .
@techTFQ
@techTFQ 6 ай бұрын
Thank you 🙏 Glad to hear that .. my email techtfq@gmail.com
@saswatkumar2517
@saswatkumar2517 6 ай бұрын
brilliant explanation
@Kondaranjith3
@Kondaranjith3 11 ай бұрын
Hi sir string_agg function in postgress but i am using mssql server i could not find the aternative function for it
@shivambansal3560
@shivambansal3560 11 ай бұрын
try going with group_concat()
@BharathKumar-id8wk
@BharathKumar-id8wk 11 ай бұрын
❤good one
@chaitusai7674
@chaitusai7674 2 ай бұрын
select * from(select c.party, count(c.party), rank() over(partition by r.constituency_id order by votes desc) as rnk from candidates c join results r on c.id=r.candidate_id group by c.party) x where x.rnk=1; is this good?
@chaitusai7674
@chaitusai7674 2 ай бұрын
why have you removed order by clause within cte? in 3rd query? please anyone explain
@dikshapatiyal5986
@dikshapatiyal5986 4 ай бұрын
You are Amazing
@m.kirubakaran6564
@m.kirubakaran6564 11 ай бұрын
Thanks Man.. very very useful.. very easy to understand Big Thx......
@jakusam4564
@jakusam4564 11 ай бұрын
Dear sir ,when your next SQL live bootcamp start?eagerly waiting for this
@achunaryan3418
@achunaryan3418 11 ай бұрын
Excellento.
@rimaranimeher9644
@rimaranimeher9644 9 ай бұрын
Please do more interview questions on mysql
@techTFQ
@techTFQ 8 ай бұрын
Noted
@Al-Ahdal
@Al-Ahdal 11 ай бұрын
Hi I am a professional accountant, and do loads of business analysis, reporting etc in Excel. I would like to learn Business SQL for Data Analytics, kindly share the road map and learning source. Thanks
@user-pz8vn8ht9u
@user-pz8vn8ht9u 11 ай бұрын
Do you have any idea of starting PlSql bootcamp?
@varunl6948
@varunl6948 9 ай бұрын
Thanks for this!
@techTFQ
@techTFQ 8 ай бұрын
You're welcome
@kamalikamukherji6482
@kamalikamukherji6482 11 ай бұрын
Ur the best❤
@deepaknayak1195
@deepaknayak1195 11 ай бұрын
Thanks ❤
@techTFQ
@techTFQ 11 ай бұрын
You're welcome 😊
@jayantachakraborty4915
@jayantachakraborty4915 11 ай бұрын
08:48 I did not understand why we used count(1). Could you help me understand?
@RoopmathiGunnaubcmba
@RoopmathiGunnaubcmba 11 ай бұрын
@TechTFQ: This question is for which company? In India or North America?
@RajeshwarUma
@RajeshwarUma 11 ай бұрын
Thank you so much
@favoura5555
@favoura5555 7 ай бұрын
Why did we join when we already used cte?
@nivisworld1513
@nivisworld1513 11 ай бұрын
Hai....sir.... please write the querys 1) how to find highest salary of the employee? 2) query to find 2nd ,3rd,4th ....higest salaries? And query to find nth highest salary?
@vishalgoswami7512
@vishalgoswami7512 11 ай бұрын
use rank over order by salary
@nivisworld1513
@nivisworld1513 11 ай бұрын
@@vishalgoswami7512 if u don't mind....can you write?
@amolgmagar
@amolgmagar 15 күн бұрын
website is not working. any other link for dataset?
@razikamuthu3795
@razikamuthu3795 11 ай бұрын
Can you please share next boot camp slots for SQL
@houcineb4139
@houcineb4139 11 ай бұрын
thank you
@rushikeshjoshi9506
@rushikeshjoshi9506 11 ай бұрын
I know this is from hacrkrank interview questions for ETL Testing I faces this all 3
@techTFQ
@techTFQ 11 ай бұрын
nice, good to know
@sarvesht7299
@sarvesht7299 11 ай бұрын
Which company bro ?
@pratheeshsailor5193
@pratheeshsailor5193 11 ай бұрын
​@@sarvesht7299meesho
@b_rizzle4808
@b_rizzle4808 11 ай бұрын
will using an order by in a cte slow down query performance? or will it just be ignored
@techTFQ
@techTFQ 11 ай бұрын
order by is unnecessary inside a cte because the purpose of cte is to return a resultset, how the resultset is ordered is not necessary. And yes order by will consume some resources so better to avoid it when its not required
@dravidbalaji1373
@dravidbalaji1373 6 ай бұрын
Super bro
@balaroxx2700
@balaroxx2700 Ай бұрын
String_arg() inside distinct is not a valid in ms sql please give me alternative code😢 19:32 also the order by inside strinģ arg 35:48
@ramshabdaramnaresh9438
@ramshabdaramnaresh9438 11 ай бұрын
In SQL Server string_agg not supporting distinct then how to solve 2nd one
@rickymahakul3871
@rickymahakul3871 11 ай бұрын
My age is 32 can I enter into data analyst job if I acquire skills required for this job role
@mohanmuppidi6846
@mohanmuppidi6846 10 ай бұрын
S man.. It is good
@techTFQ
@techTFQ 8 ай бұрын
Thank you
@anudeepreddy5559
@anudeepreddy5559 11 ай бұрын
Plsql bootcamp please
@promitdutta3029
@promitdutta3029 10 ай бұрын
how to do string_agg fcn in mysql ?
@jetsfromnewjersey1377
@jetsfromnewjersey1377 11 ай бұрын
Hi taufiq i want to buy sql course but payment portal is not able to accept my card itrat ali from NJ USA
@user-bg1bn7np4u
@user-bg1bn7np4u 11 ай бұрын
Can we use count(*) instead of count(1) in my sql?
@jayantachakraborty4915
@jayantachakraborty4915 11 ай бұрын
Same question. Did you find any solution?
@RyanLoh
@RyanLoh 10 ай бұрын
Hi which software are you using to write this SQL code?
@techTFQ
@techTFQ 8 ай бұрын
PostgreSQL DB, PG Admin tool
@nivisworld1513
@nivisworld1513 11 ай бұрын
I know these are the basic qns but i need proper queries plz ...( if anybody see my mes... u can also rply )
@Fitness_Gallery
@Fitness_Gallery 11 ай бұрын
Sir please make the video in Hindi because Hindi is familiar for us
@rohit_vora
@rohit_vora 3 ай бұрын
with cte as (select row_number() over(partition by party ) rn, c.id, party, constituency_id, votes from candidates c join results r on r.candidate_id = c.id), cte2 as (select c1.id, c2.id, c1.party, c1.constituency_id,c2.constituency_id, c1.votes dvot, c2.votes rvot from cte c1 join cte c2 on c1.constituency_id = c2.constituency_id and c1.rn = c2.rn and c1.party c2.party), cte3 as (select *, case when dvot > rvot then 1 else 0 end flag from cte2) select concat(party, ' ', total) wons from (select party, sum(flag) total from cte3 group by 1)
@farzanahmed5530
@farzanahmed5530 2 күн бұрын
-- Hi, I tried without CTE, Please check my query sir :- SELECT Party, count(*) FROM [dbo].[candidates] WHERE ID IN (SELECT r1.candidate_id from [results] R1, [results] R2 WHERE R1.Constituency_id=R2.Constituency_id and R1.VOTES< R2.VOTES ) GROUP BY Party
@MJTECH4U
@MJTECH4U 11 ай бұрын
Appreciate it. @techTFQ
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 40 МЛН
what will you choose? #tiktok
00:14
Анастасия Тарасова
Рет қаралды 4,6 МЛН
Люблю детей 💕💕💕🥰 #aminkavitaminka #aminokka #miminka #дети
00:24
Аминка Витаминка
Рет қаралды 431 М.
PWC Data Analyst Interview | SQL Intermediate Question 11
9:46
The 25 SQL Questions You MUST Know for Data Analyst Interviews
32:47
KSR Datavizon
Рет қаралды 215 М.
[Top 80] Business Analyst Interview Questions and Answers
2:58:07
ThePrefectBA
Рет қаралды 882 М.
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 40 МЛН