SQL Query to Match City Names Ending With Vowels (a,e,i,o,u)
To match the names of cities ending with a vowel, use the LIKE operator with % wildcard. This matches all cities that end with a vowel. Here is a SQL query to match city names ending with vowels (a,e, i,o,u). Query:SELECT EMPNAME,CITY FROM office WHERE CITY LIKE %[aeiou]Example DatabaseTo use this q