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

vowels in sql

SELECT DISTINCT CITY FROM STATION WHERE SUBSTR(CITY,1,1) IN ('A','E','I','O','U') AND SUBSTR(CITY,-1,1) in ('A','E','I','O','U');
Comment

selecting names ending with vowels in sql

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

PREVIOUS NEXT
Code Example
Sql :: group_concat length limit 
Sql :: change column name mysql command line 
Sql :: sqlite3 now 
Sql :: dump mysql 
Sql :: tsql get beginning of year 
Sql :: if date is today mysql 
Sql :: get current month mysql 
Sql :: check if mysql is installed 
Sql :: oracle stop job 
Sql :: oracle drop column 
Sql :: your password does not satisfy the current policy requirements 
Sql :: name of today sql 
Sql :: MySQL - Enabling the Event Scheduler 
Sql :: mysql 8 error on identified by 
Sql :: import dump mysql 
Sql :: show databases mysql docker 
Sql :: timestamp in sqlite 
Sql :: mysql password error create datbase 
Sql :: oracle failed login attempts 
Sql :: mysql check if string contains comma separated 
Sql :: create a table with an id in mysql 
Sql :: sql get user account 
Sql :: mysql change root password ubuntu 
Sql :: table information in sql server 
Sql :: apex select list ORA-20999 
Sql :: create policy in sql 
Sql :: operadores en postgresql 
Sql :: how to install mysql server on centos 7 
Sql :: mysql error codeigniter 
Sql :: oracle list service names 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =