Skip to content

Instantly share code, notes, and snippets.

@ko31
Created November 13, 2015 03:32
Show Gist options
  • Save ko31/ffc70b53486fb397db53 to your computer and use it in GitHub Desktop.
Save ko31/ffc70b53486fb397db53 to your computer and use it in GitHub Desktop.
【MySQL】dummy
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