yup i'm also not sure about setting it as an attribute but you could always use UPPER(col_name) in your SELECT statements to extract them in uppercase...
LCASE(str)
LOWER(str)
Returns the string str with all characters changed to lowercase according to the current character set mapping (the default is ISO-8859-1 Latin1):
This function is multi-byte safe. UCASE(str)
UPPER(str)
Returns the string str with all characters changed to uppercase according to the current character set mapping (the default is ISO-8859-1 Latin1):
mysql> SELECT UCASE('Hej');
-> 'HEJ'
This function is multi-byte safe.
- - - - - - - - - - - - - - -
Bookmarks