Specifies whether string search or comparison on the column is CASE_SENSITIVE or CASE_INSENSITIVE.
Click to navigate to the Amazon Redshift docs page for this syntax.
The default collation language is English. If your database uses a different language, please update the 'en-' prefix to match your database's language. For more information, please refer to this .
Grammar Syntax
COLLATE CASE_SENSITIVE | COLLATE CASE_INSENSITIVE
Sample Source Patterns
Input Code:
IN -> Redshift_01.sql
CREATE TABLE table1 (
col1 TEXT COLLATE CASE_SENSITIVE,
col2 TEXT COLLATE CASE_INSENSITIVE
);