Possible Duplicate:
UTF-8 all the way through
So I have a column in my table called 'names' which is a VARCHAR (60), but I am trying to accept international characters properly. For Chinese/Korean characters it is just putting '?' in place of the actual chracters. What is the collate that works properly with the international 2 byte standard(s)? I also need to be able to SELECT data from this column based on case sensitivity so TEST
will pull a different row than Test
. Thanks