Guest User

Untitled

a guest
Nov 24th, 2017
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. 15:10 <@wod> mysql> show tables;
  2. 15:10 <@wod> +---------------+
  3. 15:10 <@wod> | Tables_in_rus |
  4. 15:10 <@wod> +---------------+
  5. 15:10 <@wod> | cake |
  6. 15:10 <@wod> +---------------+
  7. 15:10 <@wod> 1 row in set (0.00 sec)
  8. 15:11 <@wod> mysql> desc cake;
  9. 15:11 <@wod> +-------+------------------+------+-----+---------+----------------+
  10. 15:11 <@wod> | Field | Type | Null | Key | Default | Extra |
  11. 15:11 <@wod> +-------+------------------+------+-----+---------+----------------+
  12. 15:11 <@wod> | id | int(10) unsigned | NO | PRI | NULL | auto_increment |
  13. 15:11 <@wod> | pie | varchar(128) | NO | | NULL | |
  14. 15:11 <@wod> +-------+------------------+------+-----+---------+----------------+
  15. 15:11 <@wod> 2 rows in set (0.00 sec)
  16. 15:11 <@patey> I think that cake schema needs some work
  17. 15:12 <@wod> mysql> select * from cake;
  18. 15:12 <@wod> +----+--------+
  19. 15:12 <@wod> | id | pie |
  20. 15:12 <@wod> +----+--------+
  21. 15:12 <@wod> | 2 | yogurt |
  22. 15:12 <@wod> | 12 | cream |
  23. 15:12 <@wod> | 21 | rum |
  24. 15:12 <@wod> | 31 | gin |
  25. 15:12 <@wod> +----+--------+
  26. 15:12 <@wod> 4 rows in set (0.00 sec)
  27. 15:13 <@wod> Thing is, I'm actually afraid to drop it in case everything stops working.
Add Comment
Please, Sign In to add comment