CREATE DATABASE db_name
[[DEFAULT] CHARACTER SET charset_name]
[[DEFAULT] COLLATE collation_name]
The mysql docs tell me that you can optionally specify DEFAULT for these two lines, but what does it actually do?
How is DEFAULT CHARACTER SET different from CHARACTER SET?
(The same goes for collate)