Skip to content

Instantly share code, notes, and snippets.

@muojp
Created September 5, 2012 09:40
Show Gist options
  • Save muojp/3634179 to your computer and use it in GitHub Desktop.
Save muojp/3634179 to your computer and use it in GitHub Desktop.
末尾全角スペースの罠DBとか怖いって話を社内でしてた
mysql> create database `foo`;
mysql> create database `foo `;
mysql> create database `foo  `;
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| foo |
| foo   |
| foo  |
| mysql |
+--------------------+
5 rows in set (0.00 sec)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment