Search
 
SCRIPT & CODE EXAMPLE
 

SQL

find names starting with vowels in sql

SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[aeiouAEIOU]';
Comment

sql name ends with vowels

select distinct city
from station
where substring(city,len(city),1) in ('a','e','u','o','i')
order by city;
Comment

sql ending with vowels

SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE '%[aeiou]'
Comment

selecting names ending with vowels in sql

SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '[aeiouAEIOU]$';
Comment

PREVIOUS NEXT
Code Example
Sql :: what is a stored procedure 
Sql :: mysql order by calculated column 
Sql :: mysql select all table that have field names 
Sql :: delete in sql server 
Sql :: list databases in sql server 
Sql :: sequelize with mysql nodejs 
Sql :: bulk insert sql query syntax 
Sql :: flask sqlalchemy session delete 
Sql :: sql replace id with name from another table 
Sql :: get url of cpanel database hostname 
Sql :: Resolved [java.sql.SQLException: ORA-29977: Unsupported column type for query registration in guaranteed mode ] 
Sql :: enlever les doubles espaces dans les tables postgresql 
Csharp :: minimize window form c# 
Csharp :: c# calcualte proccess 
Csharp :: unity how to change rotation 
Csharp :: loop over object properties c# 
Csharp :: unity button onclick remove listener 
Csharp :: c# bytes to string 
Csharp :: unity exit application 
Csharp :: c# how-to-download-image-from-url 
Csharp :: split with multiple delimiters c# 
Csharp :: c# list files in directory 
Csharp :: how to do a foreach loop in c# for dictionary 
Csharp :: c# get current date 
Csharp :: path desktop c# 
Csharp :: switch case c# range 
Csharp :: c# randomize a list 
Csharp :: get date from file c# 
Csharp :: find unity 
Csharp :: sort a dictionary by value in c# 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =