views:

16

answers:

1

Simple question, how can I see what collation a table has? I.E. I want to see:

+-----------------------------+
|  table  |     collation     |
|-----------------------------|
| t_name  |  latin_general_ci |
+-----------------------------+

Thanks for your help.

+2  A: 

SHOW TABLE STATUS shows information about a table, including the collation.

Lekensteyn
Thanks, I knew it was something simple.
Scott