For example when using a SQL server database that has a default collation of case insensitive I can override that collation in a query to get a case sensitive comparison like so:
SELECT *
FROM MyTable
WHERE MyColumn LIKE '%test%' COLLATE SQL_Latin1_General_CP1_CS_AS
How would achieve the same thing in a Sybase database that is also set to default to case insensitive?