3
Help me understand how this works please.
I happen to be starting the studies in SQL and hackerhank
has an exercise that needed this code:
SELECT DISTINCT CITY FROM STATION WHERE REGEXP_LIKE(LOWER(CITY), '^[aeiou]') ;
After a lot of effort and one person helped me because I had gone a little over half of this select
and the ending in my head I knew what I should do, but without the technical knowledge it becomes difficult to write.
Someone can translate what the code is doing, so I can assimilate.
Thank you very much for the explanation, from there I can proceed in the studies with the understanding in the official documentation. Thanks
– Thiago Piacentini