Created
September 5, 2012 09:40
-
-
Save muojp/3634179 to your computer and use it in GitHub Desktop.
末尾全角スペースの罠DBとか怖いって話を社内でしてた
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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