SQL session 6 | Distinct, Order By, Limit, Like Keyword | Trendytech

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024

Комментарии • 53

  • @sumitmittal07
    @sumitmittal07  Год назад +2

    Checkout the Big Data course details here: trendytech.in/?referrer=youtube_sql7

  • @santoshsable1
    @santoshsable1 2 года назад +11

    The sessions have been really good till now. I really appreciate the efforts that you put in to provide your knowledge to us. A small request from my end that would really help us, is if you could provide the data as an attachment. So it will be really handy and good to practice with the same set of data that you teach.
    Thank-you. ..!!

  • @yashdhas8202
    @yashdhas8202 2 года назад +2

    order by using column serial no was very new for me and amazing too. Excited for for session on joins.

    • @sumitmittal07
      @sumitmittal07  2 года назад

      I hope you will find the upcoming sessions even more interesting :)

  • @peternguyen3452
    @peternguyen3452 Год назад +1

    Hi Sumit, really great lessons, but I agree with a lot of other commentors about how sharing the notepad seed data would be very helpful.

  • @rokibhasan5184
    @rokibhasan5184 6 месяцев назад

    3rd day of Learning SQL.
    Specially the multi level limit clause, that's something I found very new. As I have already did some courses from YT.

  • @thakurmanu7102
    @thakurmanu7102 3 месяца назад

    Thank you so much for sharing your knowledge with us.
    Amazing teaching skills.

  • @gauravrajauria9460
    @gauravrajauria9460 2 года назад +5

    Sir, the sessions are amazing and well explained. Thanks for this amazing stuff.
    Will you be covering the Normalisation?

  • @santanuroy2121
    @santanuroy2121 Год назад

    Hello Sumit Sir, I have installed in my Laptop MYSQL 8.0 and using SQL Yog IDE and I run
    "SELECT DISTINCT source_of_joining FROM students ORDER BY enrollment_date DESC LIMIT 5;" --- its work perfectly. No error showing in the result section
    Also I used same table DDL & DML....as you write in your note pad.

  • @aparoopsaha8477
    @aparoopsaha8477 2 года назад +1

    Sir, please include Cte and window functions soon.. I have to understnd thm very well. And getting understood by you is best sir. Crystal clear❤

  • @Someone-rj3vu
    @Someone-rj3vu 2 года назад +3

    Hello Sir, loving the sessions. Could you also attach some practice questions along with the sessions if and only if possible. Also, thankyou for such easily explained insightful sessions.

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Will definitely try sharing the practice questions :)

  • @karthikeyankarthik4752
    @karthikeyankarthik4752 9 месяцев назад

    like '_____' thanks for this scenario.Since i having exp of 9 year and i don't about this. Thanks sir.

  • @sukantabala2514
    @sukantabala2514 6 месяцев назад

    Very good turorial.

  • @_insanebuddy
    @_insanebuddy Год назад

    Thanks sumit sir ! This series is amazing .

  • @panththakkar7868
    @panththakkar7868 2 года назад +1

    Hello sir , will you cover things like when to use index and how to optimise query performance

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Definitely in the upcoming sessions. Keep watching the series :)

  • @anabilmazumder3622
    @anabilmazumder3622 2 года назад +1

    Sir, the sessions are well explained. But one imp. thing missing is practice data sets with practice questions. Could not find anyome atleast till session-6..

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Will try to provide a link to download the practice questions and data sets in the description.

  • @hrishipal3567
    @hrishipal3567 Год назад

    Crazy good❤

  • @poojag4335
    @poojag4335 3 месяца назад

    Loved it

  • @ningus8522
    @ningus8522 Год назад

    thanku sir..

  • @dilawarjalil8842
    @dilawarjalil8842 Год назад

    Thanks Sir

  • @stylewithanjudhanu4002
    @stylewithanjudhanu4002 2 года назад +1

    Could you please include Analytical functions and Pivot too

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Will be included in the upcoming sessions.

  • @itsme1674
    @itsme1674 2 года назад

    Amazing lecture

  • @somethingmeaningful
    @somethingmeaningful 2 года назад

    Please provide the notes you use during the session. Also let me from where can I download them.

  • @drspark123
    @drspark123 2 года назад

    Thank you sir ..

  • @aashishmalhotra
    @aashishmalhotra 2 года назад

    11:00 doesn't know this syntax. Thanks

  • @AGRIMTYAGI14
    @AGRIMTYAGI14 2 года назад

    Can you please upload the notepad on google drive to refer the queries?

  • @vinaykumar-oc7ev
    @vinaykumar-oc7ev 7 месяцев назад

    Which recording sw are you using?

  • @limitless365
    @limitless365 2 года назад +2

    One question, if I learn SQL, where I can find SQL related jobs? Does it possible to get a job If I only know SQL.

  • @vishnujatav6329
    @vishnujatav6329 2 года назад +1

    Good session

  • @nikhilkotte3779
    @nikhilkotte3779 Год назад

    Hi Sir, I got the output for below query which you got error.
    mysql> SELECT DISTINCT source_of_joining FROM students ORDER BY enrollment_date DESC LIMIT 5;
    +-------------------+
    | source_of_joining |
    +-------------------+
    | friend |
    | youtube |
    | google |
    | quora |
    | linkedin |
    +-------------------+

  • @ARUNKUMAR-yn9uy
    @ARUNKUMAR-yn9uy 2 года назад +1

    first view

  • @harshrajvaghela699
    @harshrajvaghela699 2 года назад

    in previous video

  • @subhendukumarsingh7203
    @subhendukumarsingh7203 2 года назад

    SELECT student_id, student_fname FROM students WHERE student_fname LIKE '%\%ul';
    SELECT student_id, student_fname FROM students WHERE student_fname LIKE '%\_ul';
    both are giving output "Empty set (0.00 sec)"
    but i have one record whose name ends with ul, that is rahul.
    Sir please Solve my Issues.

    • @navneet2649
      @navneet2649 2 года назад +1

      yes both the statements will give empty set since both the statements which you have mentioned cannot return "rahul". If instead of 'rahul' you had 'rah%ul' or 'rah_ul' then you would got the desired results!
      For getting 'rahul' simply write :
      SELECT student_id, student_fname FROM students WHERE student_fname LIKE '%ul';

  • @satviktejas8716
    @satviktejas8716 2 года назад

    WHERE CAN WE FIND THAT NOTEPAD WHERE YOU WRITING COMMAND SIR
    PLZ TELL

  • @shashankarya9481
    @shashankarya9481 2 года назад

    where can i find this notepad file?

  • @shreyashchoudhary6827
    @shreyashchoudhary6827 2 года назад

    Can you provide the written notes ,which you write while explaining

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Will try including them in the description.

    • @satviktejas8716
      @satviktejas8716 2 года назад

      can you plz provide the notepad 'sql course'
      we need to revise

  • @architkumar1265
    @architkumar1265 Год назад

    Smash the like for "LIKE Keyword"...👊🏻👍🏻

  • @limitless365
    @limitless365 2 года назад

    I am continuing every episode regularly...

    • @sumitmittal07
      @sumitmittal07  2 года назад

      Keep watching and upskilling :)

    • @satviktejas8716
      @satviktejas8716 2 года назад

      where can we find the document which sir is preparing side by side?plz tell

  • @harshrajvaghela699
    @harshrajvaghela699 2 года назад

    please sir reply my ducts

  • @divyanshujha3908
    @divyanshujha3908 Год назад

    Sir, can you please add a text file containing all the records, so that we can practice ourselves. Thank You