Answers for "check if string starts with a vowel sql"

0

starts and end with vowel sql

SELECT DISTINCT CITY 
FROM STATION  
WHERE CITY LIKE '[AEIOU]%' and CITY LIKE '%[aeiou]';
Posted by: Guest on September-22-2021
1

starts and end with vowel sql

SELECT DISTINCT CITY 
FROM STATION  
WHERE CITY regexp '^[AEIOU]%' and CITY regexp '[aeiou]$';
Posted by: Guest on September-22-2021

Code answers related to "check if string starts with a vowel sql"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language