Search
 
SCRIPT & CODE EXAMPLE
 

SQL

mysql check if lowercase

-- will detect all names that are not in uppercase
SELECT 
    name, UPPER(name) 
FROM table 
WHERE 
    BINARY name <> BINARY UPPER(name)
;

-- will detect all names that are not in lowrcase
SELECT 
    name, UPPER(name) 
FROM table 
WHERE 
    BINARY name <> BINARY LOWER(name)
;
Comment

PREVIOUS NEXT
Code Example
Sql :: sql groub by count 
Sql :: drop all tables in azure sql database 
Sql :: getdate function in postgresql 
Sql :: multiple like in sql 
Sql :: restore backup to new database sql server 
Sql :: declaring variables in pl sql 
Sql :: change filed order in mysql 
Sql :: update join sql 
Sql :: SQL Server Configuration Manager location 
Sql :: how to know the character set of an oracle databes 
Sql :: how to enable mysql 5.7 root user password on linux 
Sql :: oracle apex debug time 
Sql :: how to access to mysql without root 
Sql :: list all tables in postgres 
Sql :: oracle partition table row count 
Sql :: how to combine 2 tables in mysql 
Sql :: enter mysql command line 
Sql :: create date sql 
Sql :: how to load files in mysql 
Sql :: create scalar function in sql server 
Sql :: sql insert column 
Sql :: export mysql db using command line 
Sql :: oracle nvl 
Sql :: sequence postgresql 
Sql :: mysql order by date asc null last 
Sql :: how to count the number of rows in sql 
Sql :: sql query to select data between two dates 
Sql :: insert array into mysql column 
Sql :: sql right join 
Sql :: install mysql for fedora 34 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =