SQL Query Optimization - Tips for More Efficient Queries

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

КОМЕНТАРІ • 20

  • @Borhamus
    @Borhamus 3 місяці тому +2

    10/10, no time wasted.

  • @VAIBHAVMALHOTRA19
    @VAIBHAVMALHOTRA19 Рік тому +6

    Underrated channel

  • @soundarapandian8374
    @soundarapandian8374 Рік тому +5

    Wisdom knowledge to the point of info. I owe you for the same.

  • @badooral-holibi2281
    @badooral-holibi2281 2 роки тому +1

    thanks,I watched all videos about SQL reaaaaaaallly helpful 😍

  • @PlasmaCoolantLeak
    @PlasmaCoolantLeak 7 місяців тому

    Novice SQL user, thanks for this!

  • @galarnan4078
    @galarnan4078 2 роки тому +1

    Thanks Cody! Love the simplicity

  • @maryam4071
    @maryam4071 9 місяців тому

    Thanks alot. how can we remove duplicated then?

  • @timm8220
    @timm8220 Рік тому

    In ORACLE I use Fetch at the end of a query instead of Top or Limit

  • @aaaccciiiddd
    @aaaccciiiddd Рік тому +2

    wtf does selecting more columns do if you want the unique name and age pairs?

    • @RiyazParve
      @RiyazParve 8 місяців тому +1

      He forgot to say use group by instead

  • @Cahangir
    @Cahangir Рік тому +1

    Thanks man, valuable content.

  • @Milk_Man990
    @Milk_Man990 2 місяці тому

    What does one do in a SQL occupation that would make off-peak hours relevant? I mean I genuinely don't know, I'm still studying.

  • @salomengoh1
    @salomengoh1 11 місяців тому

    Hi Cody, Do you offer a class on SQL and data analitics

  • @vijay6face
    @vijay6face 4 місяці тому +1

    its crispy Cody thanks

  • @rahmatjo6837
    @rahmatjo6837 Рік тому

    bang nanya kenapa ya, ukuran size mysql cpanel sy sangat besar, padahal ukuran asli size phpmyadmin nya sangat kecil ?

  • @psz34
    @psz34 Рік тому

    What are wildcards?

    • @Xevailo
      @Xevailo Рік тому +8

      Wildcards are "placeholders" for when you want to leave some aspects of a filter open for variation. Say you have a tabel of books, and you want to SELECT all the books that start with "The": since you can hardly know all book titles with "The " at the beginning by heart and there could be also more new books being released in the future that start with "The ", you cannot (reasonably) do a "WHERE title = 'The giver' OR title = 'The holy bible' OR ... ". This is where Wildcards come into play: by saying "WHERE title = 'The %' " you fetch all the books that have a title that starts with "The ", without having to know every single one of them. And if you put this wildcard (the % in your query) at the beginning or a string, say "WHERE lastname = '%son' ", you SELECT all records that end in "son", like "Eriksson", "Stevenson" etc

  • @yuvrajb4696
    @yuvrajb4696 Рік тому +1

    Nice

  • @jamesbond-fk3eq
    @jamesbond-fk3eq 6 місяців тому

    Thank u Master

  • @John5ive
    @John5ive 9 місяців тому

    I thought I might see something like use a CTE...