SQL Interview questions | Data Analyst | Part - 3

Поділитися
Вставка
  • Опубліковано 2 сер 2024

КОМЕНТАРІ • 18

  • @rajm5349
    @rajm5349 4 дні тому

    thnks fr xplng wndws fnctins clearly , if possble cn u xpln any healthcare project

  • @mahenderchilagani5916
    @mahenderchilagani5916 15 днів тому

    Very well explained, thanks for the videos.

    • @TheMLMine
      @TheMLMine  14 днів тому

      Thanks. Glad it was helpful

  • @willz2622
    @willz2622 14 днів тому

    Pls keep making these videos.

  • @akashkhantwal2430
    @akashkhantwal2430 3 дні тому

    Amazing video sir, Very informative❤❤❤,Its help me alot

    • @TheMLMine
      @TheMLMine  3 дні тому

      Glad to hear that

    • @akashkhantwal2430
      @akashkhantwal2430 3 дні тому

      @TheMLMine sir how can i connect with you over the Instagram.

  • @sweetsubha514
    @sweetsubha514 Місяць тому +2

    Your efforts are highly appreciated 👍👍

  • @BE__jagdishChintamani
    @BE__jagdishChintamani Місяць тому +2

    Hello sir,
    Please make detailed videos on
    Python libraries
    Pandas
    Numpy
    Matplotlib
    Seaborn

    • @TheMLMine
      @TheMLMine  Місяць тому

      Hello Jagdish, next video on matplotlib.. coming soon

  • @rokithkumar4905
    @rokithkumar4905 Місяць тому +1

    Appreciated bro 👍🏻 is there any chance we get matplotlib after this series?

    • @TheMLMine
      @TheMLMine  Місяць тому

      Sure bro, soon you will see a video on that as well 👍

  • @akashkhantwal2430
    @akashkhantwal2430 2 дні тому +1

    Sir,when i am applying this command why it is showing error for delete duplicate entry method which you apply first
    delete from emp
    where emp_id in(select emp_id from (
    select *,row_number() over(partition by name,age,salary order by emp_id) as row_num from emp
    ) as table1 where row_num>1);
    this error is coming
    Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.
    To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 0.016 sec

    • @TheMLMine
      @TheMLMine  День тому

      Hi akash,
      This error is because MySQL safeupdate setting is on. Safeupdate restricts certain types of queries that can unintentionally affect a large number of rows while deletion. And, using a WHERE clause with condition on a non-key column (that can have repeated values) could be one cause of that.
      What can you do? For now, you can turn the setting off in Edit->Preferences->SQL Editor->Uncheck Safe Updates (you can find the checkbox at the bottom most position in the window). Then restart MySQL and try again.
      Your query should work.
      Let me know if you face any issues

  • @AbhishekSharma-vm7tr
    @AbhishekSharma-vm7tr Місяць тому +1

    nice video are they ask these type of questions to fresher or not do they ask hard questions for data analytics

    • @TheMLMine
      @TheMLMine  Місяць тому +1

      Thanks Abhishek, they may ask these type of questions in data analytics interview. However, the idea is that you should be aware of different functions and options available in SQL and how they can be used for different applications.
      Some may ask more elaborate questions where you will have to join different tables and apply these functions for different requirements. This playlist is highly recommended but for sure not enough. If you want to solve more questions you can refer to www.hackerrank.com/domains/sql
      Hope it helps