Question

CREATE SCHEMA IF NOT EXISTS `paragraph` 
   DEFAULT CHARACTER SET 'utf8' COLLATE default collation ;

this line results with error 1064. MySql 5.4.3-beta.

Was it helpful?

Solution

This works:

CREATE SCHEMA IF NOT EXISTS `paragraph` 
   DEFAULT CHARACTER SET 'utf8' COLLATE default;

There was an extra "collation" at the end.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top