Oracle SQL Practical question SQL to count number of occurrences of a vowels in a string Part2

preview_player
Показать описание
Oracle SQL Practical question SQL to count number of occurrences of a vowels in a string Part2
---------------------------------------------------------------------------------------------------------------------------

This channel is for learning Oracle SQL, PLSQL, DATABASE concepts, MYSQL, ETL, Mongo DB, Python,UNIX and related technologies.

---------------------------------------------------------------------------------------------------------------------------

---------------------------------------------------------------------------------------------------------------------------

---------------------------------------------------------------------------------------------------------------------------

---------------------------------------------------------------------------------------------------------------------------
About Myself:
----------------------
I am Siva, [LEARN | CODE | TRAIN | SHARE].
Being in IT industry for more than 10 years.
In my day to day job, I work with database technologies including Oracle, Java, Python, MongoDB, talend and UNIX.
I am passionate about "DATA", coding & training.
In my spare time, I teach database technologies , ETL etc.
I am very glad that you are reading my Profile, and I value your time as well as mine.
Looking forward to see you in my videos

---------------------------------------------------------------------------------------------------------------------------
Рекомендации по теме
Комментарии
Автор

Nice explanation!!. I have solved it with using only translate and regexp_count function.
with t1 as (select first_name
, regexp_count(translate(lower(first_name),'a','1'),'1') a_cnt
, regexp_count(translate(lower(first_name),'e','1'),'1') e_cnt
, regexp_count(translate(lower(first_name),'i','1'),'1') i_cnt
, regexp_count(translate(lower(first_name),'o','1'),'1') o_cnt
, regexp_count(translate(lower(first_name),'u','1'),'1') u_cnt
from employees),
t2 as (select t1.*,
a_cnt+e_cnt+i_cnt+o_cnt+u_cnt All_vowel_tot
from t1)
select *
from t2

LearnA-smart
Автор

Thanks a lot for your all videos.
It gives me confidence and even gitz job recently.

Thanks alot

nandiniagarwal
Автор

Thank u Siva for teaching in easy way ... If possible please make videos on security measures we need to follow while writing procedures, packages and how to avoid sql injection, second order sql injection, parameter tampering, etc

ujjwalkarn
Автор

What is lateral join?
Please make a lecture on it

karnarajmahajan
Автор

Hi bro can you make videos on commit rollback?

rajathjain
Автор

Hi gi.last time I have asked one request but I have not get yet pls.. that is my database is accept Hindi, Marathi, kanada, urudu, Malayalam but Tamil data only it's not accept..pls help me..

SelvaKumar-hgho
visit shbcf.ru