Search
 
SCRIPT & CODE EXAMPLE
 

SQL

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 :: not regexp_like in oracle 
Sql :: format the money fied with comma in international system using sql 
Sql :: how to truncate foreign key constraint table 
Sql :: postgresql change user role grant 
Sql :: sql practice 
Sql :: sql add column with default value 
Sql :: SQL select example 
Sql :: SQLITE_BUSY: database is locked 
Sql :: creating sqeuence in oracle database 
Sql :: check for directory in bash 
Sql :: select all tables linked server sql 
Sql :: update multiple columns in sql 
Sql :: create function postgresql 
Sql :: restart mysql 
Sql :: sqlite 3 mac 
Sql :: mysql datetime format 
Sql :: sql duplicate a table with data 
Sql :: creating a view in sql 
Sql :: symfony Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint fails 
Sql :: bigquery current time 
Sql :: sql join on a subquery 
Sql :: mysql insert rows to another database 
Sql :: mariadb case switch 
Sql :: sql group by 
Sql :: multiple left join mysql 
Sql :: declare date variable sql 
Sql :: how to generate ids in sql 
Sql :: drop database mysql 
Sql :: sql highest salary by location 
Sql :: SQL AVG() Function 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =