Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql server case sensitive search

SELECT 1
FROM dbo.Customers
WHERE   CustID = @CustID COLLATE SQL_Latin1_General_CP1_CS_AS
    AND CustPassword = @CustPassword COLLATE SQL_Latin1_General_CP1_CS_AS
Comment

sql String comparisons case sensitive

select * from Person.Person 
where FirstName = 'Ken'	COLLATE Latin1_General_CS_AS
Comment

sql like case sensitive

-- Postgresql case insensitive:
SELECT * FROM people WHERE name ILIKE 'JOHN'
-- John
-- JOHN
-- john
Comment

PREVIOUS NEXT
Code Example
Sql :: use float in sql server string 
Sql :: do postgresql 
Sql :: oracle percentage 
Sql :: SQL Error 1040 : Too many connections 
Sql :: check if a column is a primary key in sql server 
Sql :: how to insert multiple rows in sql 
Sql :: difference between primary key and unique key 
Sql :: The local psql command could not be located 
Sql :: how to query date in sql server 
Sql :: SQL ORDER BY DESC (Descending Order) 
Sql :: oracle login as sysdba 
Sql :: postgresql delete limit 
Sql :: update with inner join sql server 
Sql :: snowflake drop column 
Sql :: import sql in postgresql 
Sql :: count in sql and diff 
Sql :: sql right join with where clause 
Sql :: reset auto increment mysql 
Sql :: mysql to uppercase 
Sql :: mysql date equals to current_date plus days 
Sql :: mssql datetime to date 
Sql :: display all node label neo4j 
Sql :: WHERE not regex in SQL 
Sql :: mysql select statement after index 
Sql :: nosql vs sql 
Sql :: sql delete column 
Sql :: sql datitime to date 
Sql :: sql count how many times a value appears 
Sql :: null column as zero in mysql 
Sql :: sql server create database 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =