Related
I was solving a problem on SQL from Hackerrank. I have to make a query such that it gives me all city names starting with a, e, i, o or u. I'm using Like operator but still wrong answer.
Here's the problem Link
Here's my solution-
SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE '[AEIOU]%'
Can anybody explain?
LIKE does not support that parttern. You need a regular expression match for this:
SELECT DISTINCT CITY
FROM STATION
WHERE CITY REGEXP '^[AEIOU]'
In the regex, ^ represents the beginning of the string, and the square brackets define a custom character class (meaning that the first character must belong to that list).
On the other hand, if you were to use LIKE, you would need multiple conditions, which would make the code lengthier (and probably less efficient):
WHERE
CITY LIKE 'A%'
OR CITY LIKE 'E%'
OR CITY LIKE 'I%'
OR CITY LIKE 'O%'
OR CITY LIKE 'U%'
select distinct city from station where Left(city,1)='A' or Left(city,1)='E' or Left(city,1)='I' or Left(city,1)='O' or Left(city,1)='U';
This worked fine with me (MS SQL)
SELECT DISTINCT CITY FROM STATION WHERE LEFT(CITY, 1) IN ('A', 'E', 'I', 'O', 'U');
This return the City names starting with vowel.
This is a challenge question from HackerRank.
My first query is working fine:
select distinct city
from station
where city not regexp '^[aeiou]'
and city not regexp '[aeiou]$'
But my second query is giving wrong answer
select distinct city
from station
where city not regexp '^[aeiouAEIOU].*[aeiouAEIOU]$'
It is compiling but giving wrong results
https://dev.mysql.com/doc/refman/8.0/en/regexp.html
'NOT REGEXP' is Negation of REGEXP,
'REGEXP' -> Checks the 'REGEXP' if satisfied then return 1 else 0
select 'Chelsea' REGEXP '^[aeiou].*[aeiou]$' ;
0
'NOT REGEXP' -> checks the 'REGEXP' then return the opposite of the result.
select 'Chelsea' not REGEXP '^[aeiou].*[aeiou]$' ;
1
In this case, 'Chelsea' doesn't start with vowel hence REGEXP is 0 and not REGEXP is 1.
Hence you are counting the cities, even the name starts or ends with vowels.
This works in MS SQL server :
SELECT DISTINCT city FROM station WHERE city NOT LIKE '[AEIOU]%' AND city NOT LIKE '%[aeiou]';
Try this it worked for me
select distinct city
from station
where city RLIKE'^[^aeiouAEIOU].*$';
SELECT DISTINCT city
FROM station
WHERE city NOT REGEXP '^[aeiouAEIOU].*|[aeiouAEIOU]$'
Explanation: I make sure the city does not start with ('^') vowels and also does not end with ('$') vowels.
In Mysql,
where not CITY Regexp '^[aeiou].*$' or not CITY Regexp '^.*[aeiou]$'
This worked for me using the RLIKE operator... Hope this helps:
select distinct CITY from STATION where CITY NOT RLIKE '^[aeiouAEIOU]' AND CITY NOT RLIKE '[AEIOUaeiou]$' GROUP BY CITY;
You need to take care of 3 cases when using any DB
1. Word starts with vowel but ends with consonant
2. Word starts with consonant but ends with vowel
3. Word starts with consonant and ends with consonant
my solution implemented in mySQL
select distinct(CITY) from station where CITY RLIKE '(^[^aeiouAEIOU].*[aeiou]$|^[aeiouAEIOU].*[^aeiou]$|^[^aeiouAEIOU].*[^aeiou]$)';
Use this MySQL Command:
SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[^aeiou].*[^aeiou]$';
Explanation:
DISTINCT is used to remove duplicates from the result set of a SELECT statement.
"^[^aeiou]" means city names that do not start with vowels.
"[^aeiou]$" means city names that do not end with vowels.
".*" represents any string of any length.
Here is the right answer:
select DISTINCT(CITY)
from STATION
Where CITY RLIKE '^[^aieouAEIOU].*[^AEIOUaeiou]$';
Try this
select distinct city
from station
where city rlike '^[^aeiouAEIOU].*' and city rlike '.*[^aeiouAEIOU]$'
I consider both the answer right.
But some how first query is failed whereas second one is passed from hackerrank platform.
First query
SELECT DISTINCT city FROM station
WHERE city not RLIKE '^[aeiou].*[aeiou]$';
Second query : working with no issue
SELECT DISTINCT city FROM station
WHERE city not RLIKE '^[aeiou]'
and city not rlike '[aeiou]$';
SELECT DISTINCT city
FROM station
WHERE NOT city LIKE 'A%'
AND NOT city LIKE 'E%'
AND NOT city LIKE 'I%'
AND NOT city LIKE 'O%'
AND NOT city LIKE 'U%';
a lengthy way but you will get the answer
Here is a query using a Where column Not Rlike clause.
This does a pattern match of a string expression against a pattern.
Select Distinct city
From station
Where city Not Rlike '^[aeiouAEIOU].*[aeiouAEIOU]$';
Additionally, the Distinct is used to remove all results that are the same.
Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates.
THIS IS FOR MS SQL USERS
SELECT DISTINCT CITY FROM STATION WHERE CITY LIKE '[^aeiou]%' OR CITY LIKE '%[^aeiou]';
If regex is an option then check that the city does not match the following pattern:
^[aeiou]|[aeiou]$
This pattern matches ax, xa, aa and a i.e. "city starts with or ends with a vowel". When you invert the result it becomes "city does not start with and does not end with a vowel". See De Morgan's law.
MySQL implementation:
SELECT DISTINCT city, NOT city REGEXP '^[aeiou]|[aeiou]$' AS result
FROM (
SELECT 'xx' AS city UNION
SELECT 'ax' UNION
SELECT 'xa' UNION
SELECT 'aa' UNION
SELECT 'x' UNION
SELECT 'a'
) AS station
-- returns 1 for xx and x, 0 for all others
This can also work:
SELECT DISTINCT city
FROM station
WHERE city NOT RLIKE '[aeiou]$';
Simplest code, you can try:
select distinct city
from station
WHERE lower(city) Not Rlike '^[aeiou].*[aeiou]$';
OR
SELECT DISTINCT city FROM station
WHERE lower(city) not RLIKE '^[aeiou]'
and lower(city) not rlike '[aeiou]$';
This is basic solution for this problem, I hope it will surely work.
Select Distinct City From Station
Where City not LIKE 'a%a' and City not LIKE 'a%e' and City not LIKE 'a%i' and City not LIKE 'a%o' and City not LIKE 'a%u' and City not LIKE 'e%a' and City not LIKE 'e%e' and City not LIKE 'e%i' and City not LIKE 'e%o' and City not LIKE 'e%u' and City not LIKE 'i%a' and City not LIKE 'i%e' and City not LIKE 'i%i' and City not LIKE 'i%o' and City not LIKE 'i%u' and City not LIKE 'o%a' and City not LIKE 'o%e' and City not LIKE 'o%i' and City not LIKE 'o%o' and City not LIKE 'o%u' and City not LIKE 'u%a' and City not LIKE 'u%e' and City not LIKE 'u%i' and City not LIKE 'u%o' and City not LIKE 'u%u';
SELECT DISTINCT CITY FROM STATION WHERE NOT LOWER(LEFT(CITY, 1)) IN ('a', 'e', 'i', 'o', 'u') AND NOT LOWER(RIGHT(CITY, 1)) IN ('a', 'e', 'i', 'o', 'u');
--This works for db2 databases
I got the correct out put for the below code for MySql server
select distinct(city) from station
where substr(city,1,1) not in ('a','e','i','o','u') or substr(city,-1,1) not in ('a','e','i','o','u')
Most of us are reading the question wrong. They want either of the one condition to be fulfilled, not the both. The following solution works well in MS SQL Server :
select distinct city from station where (left(city,1) not in ('a','e','i','o','u') or right(city,1) not in ('a','e','i','o','u') );
select distinct city as cty from station where city not in (
select city from Station where
Right(city,1) in ('a','e','i','o','u') and
Left(city,1) in ('a','e','i','o','u')
)
Is there away to shorten a SQL statement like this? If so what would it be in MySQL and also in PostgreSQL?
SELECT DISTINCT city FROM station
WHERE (city LIKE 'A%' OR city LIKE 'E%' OR
city LIKE 'I%' OR city LIKE 'O%' OR city LIKE 'U%')
AND (city LIKE '%a' OR city LIKE '%e' OR city LIKE '%i' OR
city LIKE '%o' OR city LIKE '%u');
With MySQL, we could use a regular expression, something like this:
WHERE city REGEXP '^[AEIOU].*[aeiou]$'
Not to dive too deep into regular expressions, but as an aid to deciphering that:
the caret ^ matches the beginning of the string
the next character has to be one of the characters in the set in the square brackets A, E, I, O or U
followed by any number of any character, the dot . matches any character, the * is repetition, zero, one or more
the last character has to match one of characters in the square brackets a, e, i, o, u because the dollar sign $ matches the end of the string
For testing, use a SELECT statement
SELECT t.city
, t.city REGEXP '^[AEIOU].*[aeiou]$'
FROM ( SELECT 'A' AS city
UNION ALL SELECT 'Aa'
UNION ALL SELECT 'Abba'
UNION ALL SELECT 'a'
) t
As Gordon points out in a comment, the same approach using a regular expression comparison will work in PostgreSQL. But there syntax is a a little different, the comparison operation is a tilde ~ character, in place of MySQL REGEXP or RLIKE keyword.
WHERE city ~ '^[AEIOU].*[aeiou]$'
https://www.postgresql.org/docs/current/static/functions-matching.html#FUNCTIONS-POSIX-REGEXP
Why is it not working?
Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Our result cannot contain duplicates.
SELECT A DISTINCT CITY FROM THE STATION
WHERE CITY LIKE '%A' OR CITY LIKE '%E' OR LIKE '%I' LIKE '%O' OR LIKE '%U'
ORDER BY CITY;
What would be the correct query?
SELECT distinct CITY FROM STATION WHERE CITY LIKE '%a' OR CITY LIKE '%e' OR CITY LIKE '%i' OR CITY LIKE '%o' OR CITY LIKE '%u';
The correct answer is above 👆
this is accepted, as inside the quotations, the alphabet is considered case sensitive
hence use '%a' and similarly all the other vowels.
(% is a wildcard entry)
You can try this also-
SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '[aeiouAEIOU]$';
I solved that problem this way. Instead of checking the last character one by one, I thought it is easier to check if we use in operator.
select distinct city
from station
where substring(city,len(city),1) in ('a','e','u','o','i')
order by city;
Using MySQL;
select distinct CITY
from STATION
where right(city,1) in ('a', 'e', 'i', 'o', 'u');
You query has syntax error, for each "or", you need to put city like instead of or. In addition, remember that in most of the dbms, it is case sensitive. If you want to ignore both upper case and lower case, do it like this. I am using mysql syntax, different dbms has different functions for lcase
SELECT DISTINCT CITY FROM STATION
WHERE lcase(CITY) LIKE '%a'
OR lcase(CITY) LIKE '%e'
OR lcase(CITY) LIKE '%i'
OR lcase(CITY) LIKE '%o'
OR lcase(CITY) LIKE '%u'
ORDER BY CITY;
Try with MySQL solution :
select distinct CITY from STATION where substr(CITY, -1, 1) in ('a','e','i','o','u');
Here "distinct" will solve the problem of duplicate value and "substring" function extract substring from string . Substring also contain start & length .
For more details follow the link :- https://www.w3schools.com/sql/func_mysql_substr.asp
I solved it like this:
SELECT DISTINCT CITY FROM STATION WHERE REGEXP_LIKE(CITY,'[aeiou]$','i');
In this case, the 'i' at the end is called a "flag" which means the vowels can be upper or lower case.
select distinct CITY from STATION where CITY like '%[a,e,i,o,u]';
Try this in MS SQL server
select distinct(city) from station where city like '%[a,e,i,o,u]' order by city;
select CITY
from STATION
where right(lower(CITY),1) in ('a','e','i','o','u')
group by CITY;
Using Regular Expression in MySQL would be like this:
SELECT DISTINCT(CITY) FROM STATION WHERE REGEXP_LIKE(CITY, '[aiueo]$', 'i') ORDER BY CITY;
you can use substring to solve that
SELECT DISTINCT CITY FROM STATION WHERE SUBSTRING(CITY,-1,1) NOT IN ('a','e','i','o','u')
For Mysql, this worked for me -
select DISTINCT(CITY) from STATION
where CITY REGEXP '[aeiou]$';
Select distinct city
from Station
where lower(SUBSTR(city,length(city),1))in ('a','e','i','o','u');
Simple but easy
select distinct(CITY)
from Station
where substr(City,LENGTH(CITY),Length(City)) in ('a','e','i','o','u')
In MsSql
Try this:
SELECT DISTINCT CITY FROM STATION WHERE RIGHT(CITY,1) IN ('a', 'e', 'i', 'o', 'u');
please see the Q on https://www.hackerrank.com/challenges/weather-observation-station-11?h_r=next-challenge&h_v=zen
regarding an sql query:
Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates.
So far I have got
SELECT DISTINCT CITY FROM STATION
WHERE CITY NOT RLIKE'^[aeiouAEIOU].*$'
AND city NOT LIKE '%a'
AND city NOT like '%e'
AND city NOT like '%i'
AND city NOT like '%o'
AND city NOT like '%u'
and it is telling me this is wrong but I cant see any wrong answers in the output please advise....
thanks
Helo, it worked in my tests.
Try to compose your regular expression.
Not begins AND not ends with wovels:
SELECT DISTINCT CITY
FROM STATION
WHERE CITY NOT RLIKE '^[aeiouAEIOU].*'
AND CITY NOT RLIKE '.*[aeiouAEIOU]$';
Not begins OR not ends with wovels:
SELECT DISTINCT CITY
FROM STATION
WHERE CITY NOT RLIKE '^[aeiouAEIOU].*'
OR CITY NOT RLIKE '.*[aeiouAEIOU]$';
Not begins XOR (OR exclusive) not ends with wovels:
SELECT DISTINCT CITY
FROM STATION
WHERE CITY NOT RLIKE '^[aeiouAEIOU].*'
XOR CITY NOT RLIKE '.*[aeiouAEIOU]$';
Hope to help.
This worked for me using MySQL:
select distinct CITY from STATION where CITY NOT RLIKE '^[aeiouAEIOU]' OR CITY NOT RLIKE '[AEIOUaeiou]$' GROUP BY CITY;