Computer Science, asked by memanvisikka8823, 1 year ago

Write a sql code which has vowels as both their first and last characters

Answers

Answered by okaps
0
SELECT DISTINCT city
FROM station
WHERE city RLIKE '^[aeiouAEIOU].*[aeiouAEIOU]$'
Similar questions