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

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

techTFQ

6 месяцев назад

8,850 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@SurennBhandari
@SurennBhandari - 24.03.2024 19:57

Great sir 💯

Ответить
@amal7411jo
@amal7411jo - 24.03.2024 20:15

Great 🤩🤩🤩

Ответить
@madhustips8304
@madhustips8304 - 24.03.2024 21:06

superb explanation

Ответить
@CebuProvince
@CebuProvince - 25.03.2024 04:09

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

Ответить
@BalajiVenkatraman21
@BalajiVenkatraman21 - 25.03.2024 13:33

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;

Ответить
@kashyapshani
@kashyapshani - 25.03.2024 14:41

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

Ответить
@shyamu431
@shyamu431 - 25.03.2024 18:42

Commendable. Thanks for putting this much effort.

Ответить
@sdmagic
@sdmagic - 25.03.2024 21:48

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

Ответить
@niveditav691
@niveditav691 - 26.03.2024 01:33

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.

Ответить
@Hsalz
@Hsalz - 26.03.2024 19:57

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

Ответить
@ayelala
@ayelala - 08.04.2024 13:11

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.

Ответить
@shivinmehta7368
@shivinmehta7368 - 18.05.2024 07:44

SELECT email
FROM feedback
WHERE email ~ '^[a-zA-Z][a-zA-Z0-9_.-]*@[a-zA-Z]+\.[a-zA-Z]{2,3}$';

Ответить
@sapnasaini851
@sapnasaini851 - 18.08.2024 09:23

------ MySQL Solution ------

select cust_name, email
from feedback
where email REGEXP'^[A-Za-z][A-Za-z0-9_.-]*@[A-Za-z]+\\.[A-Za-z]{2,3}$' ;

Ответить
@DEXTER-bn9zu
@DEXTER-bn9zu - 03.09.2024 20:28

Is there any fuuzy join in SQL?

Ответить
@pamm3914
@pamm3914 - 26.09.2024 07:06

best teacher ever

Ответить