Top 10 SQL interview Questions and Answers | SQL Interview Questions (Must Watch)

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

ความคิดเห็น • 540

  • @sanchitkanojia5460
    @sanchitkanojia5460 ปีที่แล้ว +64

    Awesome Bhaiya 🔥🔥🔥
    I learned whole SQL from your videos. Your explanation is another level🔥🔥.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +11

      Glad it was helpful ✅️
      Keep learning n keep growing 🚀

    • @hk0153
      @hk0153 ปีที่แล้ว +11

      Mere job interview mei bhi same questions aye the 👍👍

    • @vrindakunj
      @vrindakunj ปีที่แล้ว +2

      This is best 👍

    • @sanchitkanojia5460
      @sanchitkanojia5460 ปีที่แล้ว +3

      @@RishabhMishraOfficial one request Bhaiya if you have more questions on SQL related to interview please share with us as soon as possible. I almost done with SQL for data analyst interview. Right now I am practicing.
      I loved your content 🔥🔥🔥

    • @ihgamingfun6295
      @ihgamingfun6295 ปีที่แล้ว +1

      @@sanchitkanojia5460 gud luck 🤞

  • @deepakbehara198
    @deepakbehara198 ปีที่แล้ว +14

    for 6th question we can also use simple window function to solve it:
    with cte as(
    select *,dense_rank() over(order by salary desc) as rnk
    from Employee
    )
    select distinct cte.salary from cte
    where cte.rnk = 2 # 2nd highest salary

    • @rohitkumarraghav6307
      @rohitkumarraghav6307 9 หลายเดือนก่อน

      yes and that is simple too ,i did that way

    • @ashwinkrishnan1287
      @ashwinkrishnan1287 5 หลายเดือนก่อน

      As a general thumb rule we shouldn’t write co related sub queries in practice because of poor performance so better to use window functions

    • @sandeepghosh7889
      @sandeepghosh7889 หลายเดือนก่อน

      How to get employee name with nth highest salary

  • @SSS-xm2dh
    @SSS-xm2dh ปีที่แล้ว +9

    Your teaching is truly exceptional. Your SQL tutorials have been an immense help to me. I was wondering if you might consider creating a comprehensive video series that covers Power BI, starting from the basics and progressing to advanced topics. Your teaching style is fantastic, and I believe many learners, including myself, would greatly benefit from such a series.

  • @zeesiddiqiofficial
    @zeesiddiqiofficial 22 วันที่ผ่านมา

    Hi Rishabh..I am in USA and have passion to be a Data Analyst..I have started my journey by watching your videos..your knowledge is wonderful and u explain super simply..am excited to move on and complete this journey with your help.. Thanks 🙏

  • @KulwinderKaur-kd3bk
    @KulwinderKaur-kd3bk ปีที่แล้ว +19

    Thank you Rishabh , I started my Data Analyst journey 4 months back from your videos and its been monumental for me. I have a request to please make a demo video on " updating resume as per the job requirement" . I have been applying for DA job but getting rejections from everywhere. I think there's need of a change in the way I apply. Also, I got really happy to know that You are also an APS alumni.

    • @frazafridi6316
      @frazafridi6316 ปีที่แล้ว

      Job mili?

    • @ethenhunt1654
      @ethenhunt1654 ปีที่แล้ว

      Mili job?

    • @tejasvikamble9061
      @tejasvikamble9061 9 หลายเดือนก่อน

      Check how to update resume on days analytics on TH-cam

    • @Anamikasingh_23
      @Anamikasingh_23 8 หลายเดือนก่อน

      Got ur job or still looking for ?

    • @sagarkumar-hd1yd
      @sagarkumar-hd1yd 7 หลายเดือนก่อน

      85954O7987 Please help with the data analyst job

  • @itzreet6792
    @itzreet6792 ปีที่แล้ว +4

    Hey brother !!
    SQL Server: Since you mentioned SQL Server, focus on learning the specific features and tools provided by SQL Server, such as SQL Server Management Studio (SSMS) for administration, SQL Server Integration Services (SSIS) for data integration, and SQL Server Reporting Services (SSRS) for reporting.
    Please make video on this

  • @surojeetdey57
    @surojeetdey57 ปีที่แล้ว +1

    Bhaeya apke videos dekh kar sql and excel Sikh liya and 2 projects bhi bana diye, first of all thanks for that providing such valuable knowledge, but mujhe portfolio banana nahi aa raha, kya aap ekbar apne music sql project ka portfolio bana k dengey jab bhi aap k pass time ho.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      Glad it was helpful ✅️
      Okayy will make a detailed video on this ✅️

  • @anshmatto2480
    @anshmatto2480 ปีที่แล้ว +2

    Q7(b)
    select empname,project from employee as co
    inner join employedetail as ed
    on co.empid=ed.empid
    Group By empname,project
    it can be done by this method also

  • @pradhyumupadhyay-w8u
    @pradhyumupadhyay-w8u 8 หลายเดือนก่อน +3

    for mysql users this is the query
    SELECT
    Gender,
    count(*) * 100.0 / (select count(*) from employee ) as ratio
    FROM
    Employee
    GROUP BY
    Gender;

  • @AK-wu2yp
    @AK-wu2yp ปีที่แล้ว +4

    Brother, we have one query, that is, which type of data are used to analyse in mnc firms where we are supposed to work. Please make one project on power BI related to that problem. For example any of the queries related to your job profile, will give us more confidence 🙏

  • @vikkynarepagul256
    @vikkynarepagul256 11 หลายเดือนก่อน

    Q. 7 b the easiest approach is
    Select empname, project from employee inner join employeedetail on employee.empid = employeedetail.empid group by project having count (*) >1

  • @anushkatathe1756
    @anushkatathe1756 ปีที่แล้ว +1

    delete from employee where empid in (select empid from employee group by empid
    having (count (*))>1); this query deletes all the records we should implement the query to delete duplicates and it should keep 1 record out of duplicates records.

    • @raaj6869
      @raaj6869 8 วันที่ผ่านมา

      for that we can use row_number()

  • @chinajong-tq1es
    @chinajong-tq1es ปีที่แล้ว +7

    You are great and no 1 who made excellent projects . I learnt how to make dashboards on excel from u only and also sql from u and power bi ❤❤❤❤❤. Thanks for everything bhaiya . We are expecting lot from you . Please make combined projects like sql+ tabluea or sql + excel bhaiya

    • @AK-wu2yp
      @AK-wu2yp ปีที่แล้ว

      We want a combined project, related to mnc job profile. Those are realistic problems related to your daily work experience.🙏

    • @ehisolojo4502
      @ehisolojo4502 ปีที่แล้ว

      Please help. How were you able to listen to the video in english? I don't understand his language. Please help. Thanks

  • @palakshreya9151
    @palakshreya9151 ปีที่แล้ว

    Hello sir apke guide se bht kch clear hua hai sir mai mba in business analytics kr rhi hubut mera background psychology graduate h but mai basic power bi, sql basic , basic paython or Excel janti hu mujhe Carrer kaise start krna chahiye data analytics me job mil payega yah fir business analytics se start krna shi hoga as a fresher

  • @ashuntu2010
    @ashuntu2010 ปีที่แล้ว +1

    One more solution for finding Nth Salary Using Rank Method :
    WITH cte AS(
    SELECT *, RANK() OVER(ORDER BY salary DESC) FROM employee
    ORDER BY salary DESC
    )
    SELECT * FROM cte
    WHERE rank = N

  • @chinchusahir
    @chinchusahir 8 หลายเดือนก่อน +2

    Great work Rishabh. You're the best. 100% trust in your work and efforts.

  • @arslanmuhammad4190
    @arslanmuhammad4190 ปีที่แล้ว +1

    Dear sir your question 7(b) if only two people in same project then it is ok but when 3 or more people in same project then it is not good approach to search people in same Project. Well, I am your Student and I really respect you and your Way of Teaching.

  • @SajidKhan-oz9pi
    @SajidKhan-oz9pi ปีที่แล้ว +1

    Sir, Good Morning...Thank you for all sql videos, im ur obedient student from odisha...Sir, question no 2(b) "filter" query is not working in mysql ..so, i have written like these lengthy process but it works... "select ((select count(empid) from employee where gender='M')*100)/(select count(empid) from employee) as male_ratio,
    ((select count(empid) from employee where gender='F')*100)/(select count(empid) from employee) as female_ratio;"

  • @kantilaljain2810
    @kantilaljain2810 ปีที่แล้ว

    Om Shanti
    Your teaching practice is good. But you explain with accounting situation just like receipt, payment, invoice, customer master, item master, employee master, account group master, in this validation, min. Max. Reorder level & save with text box feed.

  • @md.ismailhossainabid4170
    @md.ismailhossainabid4170 ปีที่แล้ว +1

    Hlw, Sir, I am from Bangladesh, but i can understand hindi very fluently . Your teaching method is awsome .
    I have started your Data analysis road map.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      Awesome, all the very best 👍

    • @md.ismailhossainabid4170
      @md.ismailhossainabid4170 ปีที่แล้ว

      @@RishabhMishraOfficial sir I have low configuration Pc, so I use exel 2007. Update version not support. Can I continue with my 2007 exel?

  • @Sanjaykumar-py9nq
    @Sanjaykumar-py9nq ปีที่แล้ว +1

    Sir ....aap kamal ho .....you r the one of the Best Teachers, Instructor, guide and so .....Huge Respect for you 🙏

  • @souradeep.official
    @souradeep.official หลายเดือนก่อน +1

    Q2(b): What’s the male and female employees ratio.
    with cte1 as
    (
    select
    count(*) as male_cnt from employee
    where gender='M'
    ),
    cte2 as
    (
    select
    count(*) as female_cnt from employee
    where gender='F'
    ),
    cte3 as
    (
    select
    count(*) as tot_cnt from employee
    )
    select ROUND(male_cnt/tot_cnt*100.0,2) as male_ratio,
    ROUND(female_cnt/tot_cnt*100.0,2) as female_ratio
    from cte1
    join cte2
    join cte3;

  • @rihanalli3754
    @rihanalli3754 ปีที่แล้ว

    Mose easiest way in MS SQL-select empname,stuff(salary,len(salary)-1,3,'XX') as masked_salary from employee

  • @Freakouts_and_found_Insane
    @Freakouts_and_found_Insane ปีที่แล้ว +1

    One more question .I face in interview
    Find employees with avg salary increase by 7% every year and populate the employee id when salary goes to 100 where avg salary of first record is 50

    • @gamesshorts7250
      @gamesshorts7250 8 หลายเดือนก่อน

      WITH RECURSIVE salary_increase AS (
      SELECT
      employee_id,
      salary,
      hire_date,
      salary AS initial_salary,
      1 AS year_count
      FROM
      employees
      WHERE
      salary = 50 -- Assuming initial salary is 50
      UNION ALL
      SELECT
      e.employee_id,
      e.salary,
      e.hire_date,
      si.initial_salary,
      si.year_count + 1
      FROM
      employees e
      JOIN
      salary_increase si ON e.employee_id = si.employee_id
      AND e.salary > si.salary * 1.07 -- 7% increase every year
      )
      SELECT
      employee_id,
      initial_salary,
      salary,
      hire_date,
      year_count
      FROM
      salary_increase
      WHERE
      salary >= 100;

  • @sushantmore6492
    @sushantmore6492 ปีที่แล้ว +2

    Q2(c): Write a query to fetch 50% records from the Employee table.
    Alternate solution to this question
    select * from employee limit (
    select count(*) from employee
    ) / 2;
    Here subquery will give us the total number of records which will be divided by 2. And then we will use limit to give us the half of the records. So if there are total 20 records then 20/2 will be 10 and the query would limit the records to just 10 rows.
    Thank you for such a great video. Learned many new things 💯

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      Glad you liked ✅️

    • @vazahatqureshi4910
      @vazahatqureshi4910 ปีที่แล้ว

      it is not working

    • @sushantmore6492
      @sushantmore6492 ปีที่แล้ว

      ​@@vazahatqureshi4910 what is the error ?? also tell me the DBMS which you are using. Is it MS SQL Server, Mysql or something else

  • @appuabhimani4958
    @appuabhimani4958 ปีที่แล้ว +2

    You are genuine. God will bless you

  • @Freakouts_and_found_Insane
    @Freakouts_and_found_Insane ปีที่แล้ว +3

    Rishabh bhaiya .. can you please provide other way for male: female ratio
    Because sir Filter function only work with postgre SQL and SQL lite ...
    It will not work with SQL server and oracle

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      You can use below example to solve this problem :
      select sum(case when state = 'NY' then 1 else 0 end)

  • @dharmeekacharya2602
    @dharmeekacharya2602 ปีที่แล้ว +1

    💗💗
    Sir aap ek nayi series start kijiye jisme Business Analyst ke sare modules cover ho jaye A-Z

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      Okayy noted ✅️.. waise tho business analyst k skills n resources same h data analyst k

    • @dharmeekacharya2602
      @dharmeekacharya2602 ปีที่แล้ว

      @@RishabhMishraOfficial 🤌💗

  • @bhagyashreepadme455
    @bhagyashreepadme455 3 หลายเดือนก่อน +2

    your's way of explanation is very nice.....

  • @asksachinkaushalya
    @asksachinkaushalya 6 หลายเดือนก่อน +1

    Q no. 2 hum group by se bhi solve kar sakte hai na ? group by city and employee k name aa jayege through string_agg se and count >1

  • @bhavinpadhiyar9829
    @bhavinpadhiyar9829 7 หลายเดือนก่อน +1

    Thank you Rishabh, for this SQL tutorial. You are doing great!! Your explanation gives quick idea to understand.👌

  • @randomguy5183
    @randomguy5183 ปีที่แล้ว +6

    Best sql qna video, was waiting for this video ❤❤🙏🙏

  • @aryakaagnihotri3210
    @aryakaagnihotri3210 ปีที่แล้ว

    hi rishabh i have a doubt in hackerrank top eaner problem
    the solution with worked is
    select months * salary , count(employee_id) from employee
    group by months * salary
    order by months * salary desc
    limit 1 ;
    but i thought abt an alternate solution but it didnot worked
    select months * salary , count(employee_id) from employee
    where months * salary = (select max(months * salary) from employee);
    in chatgpt they both are giving same result with multiple examples
    can you tell me how these two are diffrent ?

  • @MalikaaPremi1176
    @MalikaaPremi1176 3 หลายเดือนก่อน +1

    Thank you so much Rishabh sir for this sql question and answers series....You are great❤❤❤You are the best teacher in the whole world.... Because of you i learnt sql from scratch....Keep posting more videos on these topics...we all love you ❤❤❤❤ lots of love❤More power to you....

  • @souradeep.official
    @souradeep.official หลายเดือนก่อน +1

    Query to retrieve the list of employees working in same project.
    with cte as
    (
    select a.empid,a.empname,b.project
    from employee a
    join employeedetail b
    on a.empid=b.empid
    )
    select project,group_concat(empname) as emp_names
    from cte
    group by project
    having count(1)>1;

  • @hubspotvalley580
    @hubspotvalley580 ปีที่แล้ว +1

    I would like to request you, Please make video Power BI, SQL and Python for data analyst with project

  • @kanikagupta4571
    @kanikagupta4571 9 หลายเดือนก่อน +1

    Seriously You are God for me, so impressive. I started following you from yesterday You are giving me so much confidence to pursue.

  • @souradeep.official
    @souradeep.official หลายเดือนก่อน +1

    Q1(b): Write a query to retrieve the list of employees from the same city.
    SELECT
    city, GROUP_CONCAT(empname) as 'employees list'
    FROM
    employee
    GROUP BY city
    HAVING COUNT(1) > 1;

  • @vishalchhabra2481
    @vishalchhabra2481 ปีที่แล้ว +1

    Your Explanation is best and easy to understand for Beginners..............Thankyou So Much Sir😊🙏

  • @Divy91311
    @Divy91311 ปีที่แล้ว

    Hey Rishabh , really nice video! I was wondering if I could help you edit your videos and also make a highly engaging Thumbnail which will help your video to reach to a wider audience .

  • @rahil800
    @rahil800 ปีที่แล้ว +1

    Rishab Bhai Thank you so much for this ( Bohot saari Duaaye )

  • @kushalkhade2954
    @kushalkhade2954 10 หลายเดือนก่อน +2

    Hello Rishabh Bhai,
    In Q. 7(A) While using delete query in mysql I used this query and I inserted same values again to create duplicate value.
    DELETE FROM EMPLOYEE
    WHERE EMPID IN
    (
    SELECT EMPID FROM (SELECT * FROM EMPLOYEE ) AS TEMP_TABLE
    GROUP BY EMPID
    HAVING COUNT(*)>1
    )
    but this query deleted all the data .
    so how should I write query to delete only duplicate values.

    • @thecharmlessguy
      @thecharmlessguy 9 หลายเดือนก่อน

      you need to use ROW_NUMBER window function and partition by to remove duplicate records

  • @EpicSharjeel
    @EpicSharjeel ปีที่แล้ว +1

    Bhaiya bs ek chiz solve krdijye sql me kya kya topics cover krle ki Data Analyst me problem ni hga

  • @mayankrajput8074
    @mayankrajput8074 ปีที่แล้ว +1

    Gr8 sir Thank you sir, because of you, I understood SQL very well.And I'm still learning SQL.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      Glad it was helpful ✅️ keep learning n keep growing 🚀

    • @mayankrajput8074
      @mayankrajput8074 ปีที่แล้ว

      @@RishabhMishraOfficial sir thoda sql me query h Maine apko instagram pr msg kiya h sir

  • @065_abhinavkumar6
    @065_abhinavkumar6 ปีที่แล้ว +1

    q7 a if there are duplicate values such as 2 arjun with same empid then both the data is being deleted . please look into it

  • @anishdeshpande847
    @anishdeshpande847 ปีที่แล้ว

    Hi , Bhaiya I want to become to Data Analyst but I've no experience in coding, what should I start with ? SQL or Python?!Please guide me..

  • @NiceThought143
    @NiceThought143 ปีที่แล้ว +1

    Sir please answer de
    Mai. 12th pass hu
    Science maths kiya hu
    Kya mai data analysis kar sakta hu.
    Uske kaun kaun se software use hote hai woh bhi video mention Karo please 🙏🙏🙏🙏

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      Sare questions k answers ek video mei hai- Data Analyst Roadmap. Iss video ko dekho

  • @anantababa
    @anantababa 11 หลายเดือนก่อน

    Nice one, do you have any session to install db in windows or macos system for practice?

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  11 หลายเดือนก่อน +1

      Yes, already uploaded a video on how to download n install postgre sql

  • @saurabhsomkuwar1276
    @saurabhsomkuwar1276 ปีที่แล้ว +1

    Good content. However the solution to deleting duplicate rows seems incorrect. Your solution will delete all the employee data which has more than 1 row for an empid. We only want unique employees in the table and duplicated removed. We don't want to delete the whole empids which has duplicates.
    Correct solution would be I believe:
    delete from Employee
    where empid in (
    select empid from (
    select *, row_number() over (partition by empid order by empid) as rn from Employee) A
    where A.rn > 1)
    Correct me if I am wrong. Happy learning!!

  • @MohitYadav-d7y
    @MohitYadav-d7y ปีที่แล้ว +1

    Hii bhaiya ..Actually I just started learning SQL and I am just going with your SQL playlist. You have used postgre software in your videos. I just want to ask is there any difference in using different softwares and why did you choose postgre??...Please reply

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      Most of the databases use almost the same syntax, but i prefer postgre sql as it is used by most companies

    • @lifeinslo-mo595
      @lifeinslo-mo595 ปีที่แล้ว

      Isn't MySQL used by most companies? Should I learn that or not?

  • @umeshgautam44448
    @umeshgautam44448 9 หลายเดือนก่อน

    First of all Thank you Mr. Rishabh to make this awesome & helpful video, please help me to resolve one doubt of question 4, where you used Emp.Rownumber % 2 = 0, my doubt is why did you use operater '%' instead of operator '/ ' thanks in advance , will wait for your reply

  • @sambitpati6129
    @sambitpati6129 ปีที่แล้ว +1

    great video bhaiya.....tons of thanks..
    Please bring pyspark realtime project with problem statement .....

  • @kanchanchoubey4164
    @kanchanchoubey4164 10 หลายเดือนก่อน

    Hi Rishabh,
    Thanks a lot for this awesome video.
    Will you please reply this-:
    Alias doesn’t work with where clause ( I understand this reason ) then
    Why Alias works with “Having Clause “ . Don’t understand clear reason behind this.
    Thanks

  • @munitrajput
    @munitrajput ปีที่แล้ว +2

    Sir, can you make this type of video for python as well

  • @sakshamarya2052
    @sakshamarya2052 ปีที่แล้ว +3

    most helpfull video

  • @shikshajain8714
    @shikshajain8714 10 หลายเดือนก่อน +1

    can i use this query to find n highest salary
    With CTE as(
    SELECT *,row_number() over(order by salary desc) as sal FROM NAMES
    )
    select * from CTE where sal=4

  • @TipsToDailyLife
    @TipsToDailyLife ปีที่แล้ว +3

    Thankyou Sir

  • @vaibhavjain9094
    @vaibhavjain9094 ปีที่แล้ว

    Hii rishabh
    I have completed excel python and sql
    But now I am very confused about math for data science....
    How much I have to read , which topics, how much time should I give...... Don't know anything
    Statistics, probability, linear algebra, calculus and so onn....
    I don't know where to start.....
    Please make a detailed video on it...... And if you read this comment then please let me know by your reply..... Thanks

  • @sfk21
    @sfk21 10 หลายเดือนก่อน +1

    thank you Rishabh You are a great teacher for me

  • @kazeenakathoon7205
    @kazeenakathoon7205 11 หลายเดือนก่อน

    Best teacher, i would understand your teachings easily Alhamdulillah. I have watched and taken notes of your excel, sql and power bi videos. Waiting for python videos. You keep teaching and keep growing.

  • @VikasPatil-z7i
    @VikasPatil-z7i 7 หลายเดือนก่อน +1

    It was great work brother. Thank You for the teach this. God Bless you

  • @10simpy
    @10simpy ปีที่แล้ว

    Thanks much. Would you please make video on Agile scrum, Project manager and Product manager. And roadmap for all these 3 jobs - Project Manager, Product manager and Scrum master.

  • @rutujagawade1648
    @rutujagawade1648 ปีที่แล้ว +1

    Thank you for this video. But please make some videos on power bi.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      I'm glad you liked ✅️ there are already 3 videos on power bi, and you can watch them

    • @rutujagawade1648
      @rutujagawade1648 ปีที่แล้ว

      @@RishabhMishraOfficial thank you sir for reply ☺️

  • @shanushekhar1508
    @shanushekhar1508 ปีที่แล้ว +1

    Great ...waiting for advance level questions

  • @AbhishekMishra-nb1et
    @AbhishekMishra-nb1et ปีที่แล้ว +1

    Sir make one full video on what is needed to be cover on python,numpy,panda and important stuff

  • @aakashsajjan6838
    @aakashsajjan6838 ปีที่แล้ว +1

    Most valuable video for career growth 📈

  • @SATENDRAKUMAR-jk8jf
    @SATENDRAKUMAR-jk8jf ปีที่แล้ว +1

    bhai Your explanation is mind-blowing I did never thought like this thank you bhai

  • @vishnuprabhakar7327
    @vishnuprabhakar7327 ปีที่แล้ว +1

    2(b) solution: with x as (select cnt from (select count(*) as cnt,Gender from employee group by Gender) a where gender="m"),
    y as (select cnt from (select count(*) as cnt,Gender from employee group by Gender) a where gender="f")
    select concat(x.cnt,":",y.cnt) as male_female_ratio from x
    cross join y;

  • @shrikantc5556
    @shrikantc5556 ปีที่แล้ว +2

    Really good 👍 thanks brother 👏👏

  • @fahadhussain9824
    @fahadhussain9824 ปีที่แล้ว +1

    risabh great video like it ♥️, I want advise from you as you have been in Data Analyst field, I haven't been good with communication skills, Can I enter into the data Analyst field and Can I stay for long term in data analyst field without good communication skills, And is there any other channel to communicate through, Kindly give me advise on that, it will be helpful for me going into data analyst field Thanks

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว +1

      More you practice the Communication skills more it will get improved. To get a job u just need basic Communication skill

  • @hubspotvalley580
    @hubspotvalley580 ปีที่แล้ว +1

    Thanks Rishabh Brother !

  • @ank_kumar12
    @ank_kumar12 ปีที่แล้ว +1

    i got the result from this--
    select t.empid,t.emp_name,t.project ,t.salary
    from(select t1.empid,t1.emp_name,t2.project,t1.salary,
    dense_rank() over(partition by t2.project order by t1.salary desc) as ranking
    from emp t1
    join emp_d t2
    on t1.empid = t2.empid) t
    where t.ranking =1;

  • @krishnay.233
    @krishnay.233 ปีที่แล้ว +1

    Thanks for ensuring that we have insert statement for hands on.

  • @narendra742
    @narendra742 5 หลายเดือนก่อน +1

    Good brain twisting questions. Helped me. Appreciate your efforts

  • @piyushshukla238
    @piyushshukla238 ปีที่แล้ว

    How do you use the sum, join the group by, and order by function in SQL in 1 command will you give some examples?

  • @kajalgholap9688
    @kajalgholap9688 ปีที่แล้ว +1

    Sir, please make video on data analytics interview questions for freshers

  • @lalithodkhasiya4442
    @lalithodkhasiya4442 ปีที่แล้ว +1

    Can you make video on advance topics of SQL like crosstab and cast

  • @Naveen-hj9vx
    @Naveen-hj9vx ปีที่แล้ว

    how to run select * from EmpDetails query because their data time format is DD-MM-YY but in PostgreSQL, it accepts YY-MM-DD format.

  • @deepalikumari30
    @deepalikumari30 ปีที่แล้ว +1

    thanks for the video lecture. Too much useful and informative.

  • @nareshtekchandani2188
    @nareshtekchandani2188 11 หลายเดือนก่อน +1

    amazing video the last bonus question has been asked lately in obe the interviews.

  • @Tiger_Gaming30
    @Tiger_Gaming30 ปีที่แล้ว +1

    Hi Dada,
    Which tool you are using for hands on? please tell me

  • @lilyfullery4779
    @lilyfullery4779 10 หลายเดือนก่อน

    i think this is the proper Answer of Question 7th B)
    select empname , project from (
    select Empname , h.* from employees E join (
    select * from employeedetail where project in (
    select project from (
    select * , row_number() over(partition by Project order by project ) as rn from employeedetail) a where
    rn > 1) ) h on e.empid = h.empid ) c order by project

  • @Jsiwudhndhdj1
    @Jsiwudhndhdj1 ปีที่แล้ว +1

    Is the work you do in your job is as same as you show on the youtube videos or it's more complex and hard?? Waiting for the reply

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      It all depends on data u work on. Complex or unstructured data then it will be tough to work on it.

    • @Jsiwudhndhdj1
      @Jsiwudhndhdj1 ปีที่แล้ว

      @@RishabhMishraOfficial Thank you so much for the best content and reply ! 😊

  • @ayushjayprakash8039
    @ayushjayprakash8039 ปีที่แล้ว

    Hi bro you're amazing....I have request for you.. that plz make video on Tableu so that many of students can learn easily...bcz as a non IT background I can understand your explanation so it is easy for us to learn Tableu from you

  • @Sunny_Singh_1k
    @Sunny_Singh_1k ปีที่แล้ว +1

    Sir, some of the query not work in Mysql, like gender ratio and substring, especially casting. Did MySQL and postgres sql are different?

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      Yes both are different database, watch full video n you will get the answer

  • @Coconutgameplays
    @Coconutgameplays ปีที่แล้ว +1

    HI SIR Greetings I am learning sql from you i want to ask, is it possible to fill entire column values with a single command when there is a blank column with no values exists in a table Thank you

  • @lekha9151
    @lekha9151 11 หลายเดือนก่อน +1

    Great effort ❤❤❤ Incredible explaination❤❤ keep going sir❤❤❤

  • @BOSS-AI-20
    @BOSS-AI-20 9 หลายเดือนก่อน

    23:00
    select ((salary/100) || 'xx') as temp_salary
    from employee

    • @BOSS-AI-20
      @BOSS-AI-20 9 หลายเดือนก่อน

      I was using SQL lite there's no option for concat

  • @zuber9333
    @zuber9333 ปีที่แล้ว

    Sir agar koi koi company hire kar rahi hai based on sql skill to us par bhi video banana

  • @ankit27goel
    @ankit27goel ปีที่แล้ว

    Hi Buddy,
    I don't satisfy with your delete query for duplicates. If you are just checking the Emp ID in IN clause it will delete both or more rows for that Emp ID. We should identify which row we need to delete and then delete that particular row.
    Thanks !

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      This point is already mentioned in video, but anyways thanks for commenting 👍

  • @kumarapurva8502
    @kumarapurva8502 7 หลายเดือนก่อน

    In question one the two queries will give different result in the condition where salary='200000' or salary='300000' because 'between' includes the end points

  • @DharmendraKumar-DS
    @DharmendraKumar-DS ปีที่แล้ว +1

    suppose I solved all of the question mentioned in this pdf without any external help (took some time though), will I be able to clear the SQL test for any company?

  • @apnadesh3768
    @apnadesh3768 ปีที่แล้ว +1

    It's really good 👍 approach but I have still some doubts

  • @concordgaming2546
    @concordgaming2546 ปีที่แล้ว +1

    🙏 Make a video on end to end data analyst work/project Full process From A to Z

  • @Skautod
    @Skautod ปีที่แล้ว +1

    Awesome brother, i try watch your all vedio

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  ปีที่แล้ว

      Glad you liked the content ✅️
      Keep learning n keep growing 🚀

  • @divyasihariya5724
    @divyasihariya5724 ปีที่แล้ว

    Hi Rishabh. Thanks for the wonderful content. Can I use the music project on SQL in my CV with the same questions?

  • @vazahatqureshi4910
    @vazahatqureshi4910 ปีที่แล้ว

    what will be the syntax of question (6) to finding the nth highest salary from employee table by using LIMIT/TOP keywards??
    how to write syntax for this in mysql workbench???

  • @Bhavik_Prajapati
    @Bhavik_Prajapati ปีที่แล้ว +2

    Please make video on pgadmin4 DBMS tutorial

  • @ankurprasad7842
    @ankurprasad7842 2 หลายเดือนก่อน

    Thank you rishab Bhai.. keep shining ❤

  • @PriyaGupta-qj1zb
    @PriyaGupta-qj1zb ปีที่แล้ว +1

    PLEASE!!! Make a Video On PowerBI Project