Search
 
SCRIPT & CODE EXAMPLE
 

SQL

starts and end with vowel sql

SELECT DISTINCT CITY 
FROM STATION  
WHERE CITY LIKE '[AEIOU]%' and CITY LIKE '%[aeiou]';
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

starts and end with vowel sql

SELECT DISTINCT CITY 
FROM STATION  
WHERE CITY regexp '^[AEIOU]%' and CITY regexp '[aeiou]$';
Comment

PREVIOUS NEXT
Code Example
Sql :: sql server get users 
Sql :: mysql grant all privileges to a user 
Sql :: sql server find table name 
Sql :: postgresql calculate age from birthdate 
Sql :: how to list columns for particular tables in postgresql 
Sql :: oracle columns table 
Sql :: mysql drop database if exists 
Sql :: sql query to get column data type in sql 
Sql :: mysql update field from one table to another 
Sql :: update part of a string in mysql 
Sql :: mysql get longest string in column 
Sql :: select users 
Sql :: oracle all_source package body 
Sql :: alter table delete column 
Sql :: sql query to find duplicates in column 
Sql :: mysql last 6 months 
Sql :: create table sql server 
Sql :: mysql import gzip db 
Sql :: oracle current date without time 
Sql :: postgres read table structure 
Sql :: grant schema permissions postgres 
Sql :: add column in mysq 
Sql :: mysql get db name 
Sql :: postgres delete last row 
Sql :: postgresql reset auto_increment index 
Sql :: mysql add column default value 
Sql :: postgresql get current user name 
Sql :: oracle export trigger ddl 
Sql :: mysql find foreign key references 
Sql :: mysql month name extract 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =