Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to make case insensitive in sql

-- find everyone with  first_name contains d case insensitive manner
Make everthing either lower or upper case

SELECT FIRST_NAME , LAST_NAME 
FROM EMPLOYEES 
WHERE LOWER(FIRST_NAME) LIKE '%d%' ; 
Comment

PREVIOUS NEXT
Code Example
Sql :: insert into sql 
Sql :: sql order by number not ordered 
Sql :: execut sql python 
Sql :: PostgreSQL: To_Number function 
Sql :: sql primary key constraint 
Sql :: psql check if value in array 
Sql :: oracle drop default value 
Sql :: how to find 2nd highest salary in a table 
Sql :: psql check tables command 
Sql :: SELECT DISTINCT on one column, with multiple columns returned, ms access query 
Sql :: postgresql select case insensitive 
Sql :: foreign key on table oracle 
Sql :: dublicate row sql 
Sql :: max length found in mysql 
Sql :: mysql on kubernetes 
Sql :: full outer join postgres 
Sql :: distinct in sql 
Sql :: sql server datetime vs datetime2 
Sql :: sql max min 
Sql :: sqlalchemy case insensitive like 
Sql :: unique key in sql 
Sql :: SQL/update 
Sql :: oracle last connexion 
Sql :: fetlife 
Sql :: python sqlalchemy orm to select null values 
Sql :: order of sql 
Sql :: Write an SQL query to fetch the count of employees working in the department ‘Admin’. 
Sql :: alter database datafile maxsize 32g 
Sql :: sql where clause 
Sql :: mysql shell 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =