Answers for "name starts and ends with specific charecters sql"

SQL
2

sql string starts with

-- Case insensitive
SELECT * FROM my_table WHERE upper(my_column) LIKE 'SEARCHED %';  -- starts with
SELECT * FROM my_table WHERE upper(my_column) LIKE '% SEARCHED';  -- ends with
SELECT * FROM my_table WHERE upper(my_column) LIKE '%SEARCHED%';  -- contains
Posted by: Guest on April-17-2021
0

starts and end with vowel sql

SELECT DISTINCT CITY 
FROM STATION  
WHERE CITY LIKE '[AEIOU]%' and CITY LIKE '%[aeiou]';
Posted by: Guest on September-22-2021

Code answers related to "name starts and ends with specific charecters sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language