Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates.
Input Format
The STATION table is described as follows:
Select distinct city from station where city REGEXP '^[aeiou].'; In this query what does this '.' operator stands for "^[aeiou]." when i am removing this '.' i am getting wrong answer why is it so?