Skip to content

Instantly share code, notes, and snippets.

@AD7six
Created December 4, 2012 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AD7six/4202065 to your computer and use it in GitHub Desktop.
Save AD7six/4202065 to your computer and use it in GitHub Desktop.
mysql> create database so;
Query OK, 1 row affected (0.00 sec)
mysql> use so;
Database changed
mysql> create table example ( y int(4) );
Query OK, 0 rows affected (0.10 sec)
mysql> insert into example values ("1234");
Query OK, 1 row affected (0.08 sec)
mysql> select * from example;
+------+
| y |
+------+
| 1234 |
+------+
1 row in set (0.00 sec)
mysql>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment