write a SQL query from employee table who's names start with consonent and end with vowel
Answers
Answered by
0
Explanation:
The STATION table is described as follows: SQL query to check if a name begins and ends with a vowel, Sign up or log in to view your list. SELECT distinct City FROM STATION WHERE City LIKE '[A,E,I,O,U]%[A,E,I,O,U]'. Update --Added Oracle Query and $ anchor the match to the beginning and end of the value.
Similar questions