Guest User

Untitled

a guest
Dec 11th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. CREATE TABLE animals (
  2. id MEDIUMINT NOT NULL AUTO_INCREMENT,
  3. name CHAR(30) NOT NULL,
  4. PRIMARY KEY (id)
  5. );
  6.  
  7. INSERT INTO animals (name) VALUES ('dog'),('cat'),('cow');
  8.  
  9. 1 -> dog
  10. 2 -> cat
  11. 3 -> cow
Add Comment
Please, Sign In to add comment