SQL Query Optimization - Tips for More Efficient Queries

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ต.ค. 2022
  • In SQL, query optimization involves making our queries more efficient. We do so to improve performance, reduce response time, conserve technology resources, and save money.

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

  • @badooral-holibi2281
    @badooral-holibi2281 ปีที่แล้ว +1

    thanks,I watched all videos about SQL reaaaaaaallly helpful 😍

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

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

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

    Thanks Cody! Love the simplicity

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

    Underrated channel

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

    Novice SQL user, thanks for this!

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

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

  • @Cahangir
    @Cahangir 8 หลายเดือนก่อน +1

    Thanks man, valuable content.

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

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

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

    Thanks alot. how can we remove duplicated then?

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

    Nice

  • @aaaccciiiddd
    @aaaccciiiddd 11 หลายเดือนก่อน +2

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

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

      He forgot to say use group by instead

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

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

  • @jamesbond-fk3eq
    @jamesbond-fk3eq 27 วันที่ผ่านมา

    Thank u Master

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

    What are wildcards?

    • @Xevailo
      @Xevailo ปีที่แล้ว +7

      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

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

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