How to find values in all caps in SQL Server? August 7, 2023 by Tarik You can force case sensitive collation; select * from T where fld = upper(fld) collate SQL_Latin1_General_CP1_CS_AS