REGEX in SQL to find Valid Email Ids - SQL Interview Query 24 | SQL Problem Level "EASY"

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

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

  • @techTFQ
    @techTFQ  9 หลายเดือนก่อน +2

    Checkout the free Window function (in PostgreSQL) course on LearnSQL (FREE only during March 2024)
    learnsql.com/?ref=thoufiqmohammed

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

      Hi Thoufiq, we are not able to enroll this course for free. They are asking to buy the course even after using the link shared by you. I believe it is not with me only.

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

      Only the window function course in Postgres is free .. u need to search for that specific course ..

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

    Awesome! Find new concepts with great explaination. Thank you.

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

    Brilliant! I'm loving this series. It's sending me into areas of SQL I never thought about.

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

    So cool! This is the first time I've heard about regular expressions and they seem super useful. Thanks for sharing!

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

    Commendable. Thanks for putting this much effort.

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

    best teacher ever

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

    Good explanation w.r.to regex. Thank you

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

    Great 🤩🤩🤩

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

    superb explanation

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

    Hi, good Job, it's nice that you place the task / content in file with the data now, so that we know what's the task of the lesson

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

    Great sir 💯

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

    What if I want to create a new column in an existing table with a REGEX formula to get the Invoice number from a column in that table.

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

    Your videos are great.
    Do you think you can also do a small tutorial video on REGEX with a couple more problems? I tried searching in your channel but could not find. It would be really helpful.

  • @DEXTER-bn9zu
    @DEXTER-bn9zu 3 หลายเดือนก่อน

    Is there any fuuzy join in SQL?

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

    PySpark 30 Days Challenge of these problems :
    th-cam.com/play/PLqGLh1jt697xzk9LCLL_wFPDZi_xa0xR0.html

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

    select * from feedback
    where email like '[a-zA-Z]%@[a-zA-Z]%.[a-zA-Z]%'
    and email not like '%[@#]%@[a-zA-Z]%.[a-zA-Z]%'
    and charindex('.',REVERSE(email)) between 3 and 4;

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

      Hi buddy,
      I thought you might want to include the possibilities of different characters appearing in your data like: !,*;{ etc.