lotto.sql 725 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50528
  5. Source Host : localhost:3306
  6. Source Database : test
  7. Target Server Type : MYSQL
  8. Target Server Version : 50528
  9. File Encoding : 65001
  10. Date: 2013-06-02 17:55:57
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `lotto`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `lotto`;
  17. CREATE TABLE `lotto` (
  18. `tid` int(11) NOT NULL AUTO_INCREMENT,
  19. `id` int(11) NOT NULL,
  20. `number` int(11) NOT NULL,
  21. PRIMARY KEY (`tid`)
  22. ) ENGINE=InnoDB AUTO_INCREMENT=169602 DEFAULT CHARSET=latin1;
  23. -- ----------------------------
  24. -- Records of lotto
  25. -- ----------------------------