エラー
MySQLでハイフンを含んだデータベース名にしようとすると、以下のようなエラーが出ます。
mysql> create database sample-database;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘-database’ at line 1
対応策
ハイフンを入れるときは、バッククオートでデータベース名を囲む必要があります。
mysql> create database `sample-database`;