Advertisement
msforbes_09

test.sql for weekly

Jan 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.6.5.2
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Jan 18, 2018 at 10:02 AM
  7. -- Server version: 5.7.13
  8. -- PHP Version: 7.1.1
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8mb4 */;
  18.  
  19. --
  20. -- Database: `forbes`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `test`
  27. --
  28.  
  29. CREATE TABLE `test` (
  30. `data_id` int(7) NOT NULL,
  31. `this_inv` varchar(20) NOT NULL,
  32. `prod_inv` varchar(20) NOT NULL,
  33. `load_inv` varchar(20) NOT NULL,
  34. `this_date` varchar(20) NOT NULL,
  35. `prod_date` varchar(20) NOT NULL,
  36. `load_date` varchar(20) NOT NULL
  37. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  38.  
  39. --
  40. -- Dumping data for table `test`
  41. --
  42.  
  43. INSERT INTO `test` (`data_id`, `this_inv`, `prod_inv`, `load_inv`, `this_date`, `prod_date`, `load_date`) VALUES
  44. (1, '06', '02', '02', '12/28/2017', '12/23-1/5', '1/3-1/9'),
  45. (2, '49', '47', '46', '11/13-18', '11/13-18', '11/13-18'),
  46. (3, '02', '01', '51', '0', '0', '0');
  47.  
  48. --
  49. -- Indexes for dumped tables
  50. --
  51.  
  52. --
  53. -- Indexes for table `test`
  54. --
  55. ALTER TABLE `test`
  56. ADD PRIMARY KEY (`data_id`);
  57.  
  58. --
  59. -- AUTO_INCREMENT for dumped tables
  60. --
  61.  
  62. --
  63. -- AUTO_INCREMENT for table `test`
  64. --
  65. ALTER TABLE `test`
  66. MODIFY `data_id` int(7) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  67. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  68. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  69. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement