Created
November 13, 2015 03:32
-
-
Save ko31/ffc70b53486fb397db53 to your computer and use it in GitHub Desktop.
【MySQL】dummy
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 table company (company_id int AUTO_INCREMENT primary key, name text, url text); | |
mysql> insert into company values (1,'a', 'http://example.com'),(2,'b','http://example.jp'),(3,'c','http://example.net'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment