query string starts with vowels
select city from station where city REGEXP "^[aeiou].*";
query string starts with vowels
select city from station where city REGEXP "^[aeiou].*";
starts and end with vowel sql
SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE '[AEIOU]%' and CITY LIKE '%[aeiou]';
starts and end with vowel sql
SELECT DISTINCT CITY
FROM STATION
WHERE CITY regexp '^[AEIOU]%' and CITY regexp '[aeiou]$';
vowels in sql
SELECT DISTINCT CITY FROM STATION WHERE SUBSTR(CITY,1,1) IN ('A','E','I','O','U') AND SUBSTR(CITY,-1,1) in ('A','E','I','O','U');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us