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

case sensitive SQL

Note that SQL is not case sensitive. However, it is a good practice to write the SQL keywords in CAPS and other names and variables in a small case.
Comment

PREVIOUS NEXT
Code Example
Sql :: how to find total working hour in sql 
Sql :: php get closest location by latitude longitude 
Sql :: sum sqlserver 
Sql :: mysql concat and use as where column 
Sql :: php delete database 
Sql :: sql distinct clause 
Sql :: mysql grant user permissions 
Sql :: SQL SELECT TOP Equivalent in MySQL 
Sql :: mysql:5.6 syntax create table 
Sql :: relation does not exist postgresql 
Sql :: mysql select case insensitive 
Sql :: list foreign key oracle 
Sql :: oracle undo tablespace list by user 
Sql :: mysql default port number 
Sql :: SQL Find text in SPs 
Sql :: mysql max() 
Sql :: sql distinct vs unique 
Sql :: C# mysql data reader from two tables 
Sql :: postgresql variable in query 
Sql :: wamp server mysql password 
Sql :: what is unique key in sql 
Sql :: operator in sql 
Sql :: como hacer un select entre fechas mysql 
Sql :: ALTER TABLE CHANGE TABE SPACE ORACLE 
Sql :: case vhdl 
Sql :: sql order of execution 
Sql :: difference in dates sql 
Sql :: last date for each user sql 
Sql :: mysql delete duplicate rows except one 
Sql :: mysql group rows with same value 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =