Systemerweiterungen
This commit is contained in:
75
test/user.sql
Normal file
75
test/user.sql
Normal file
@ -0,0 +1,75 @@
|
||||
-- phpMyAdmin SQL Dump
|
||||
-- version 4.5.1
|
||||
-- http://www.phpmyadmin.net
|
||||
--
|
||||
-- Host: 127.0.0.1
|
||||
-- Generation Time: Oct 12, 2016 at 09:38 PM
|
||||
-- Server version: 10.1.13-MariaDB
|
||||
-- PHP Version: 7.0.8
|
||||
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
--
|
||||
-- Database: `test`
|
||||
--
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `user`
|
||||
--
|
||||
|
||||
CREATE TABLE `user` (
|
||||
`id` int(11) NOT NULL,
|
||||
`fname` varchar(255) NOT NULL,
|
||||
`lname` varchar(255) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
--
|
||||
-- Dumping data for table `user`
|
||||
--
|
||||
|
||||
INSERT INTO `user` (`id`, `fname`, `lname`) VALUES
|
||||
(6, 'Deepak ', 'Raj'),
|
||||
(7, 'Priyanshu', 'Singh'),
|
||||
(8, 'Abhi ', 'Singh'),
|
||||
(9, 'Saddam', 'Khan'),
|
||||
(10, 'Priya', 'Raj'),
|
||||
(11, 'Praveen Singh', 'Singh'),
|
||||
(12, 'Aman', 'Yadav'),
|
||||
(13, 'Aryan ', 'Singh'),
|
||||
(14, 'Lucky', 'Yadav'),
|
||||
(15, 'Mohit ', 'Tiwari'),
|
||||
(16, 'Pappu', 'Kumar'),
|
||||
(17, 'Nidhi ', 'Mishra'),
|
||||
(18, 'Ayesha', 'Singh');
|
||||
|
||||
--
|
||||
-- Indexes for dumped tables
|
||||
--
|
||||
|
||||
--
|
||||
-- Indexes for table `user`
|
||||
--
|
||||
ALTER TABLE `user`
|
||||
ADD PRIMARY KEY (`id`);
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for dumped tables
|
||||
--
|
||||
|
||||
--
|
||||
-- AUTO_INCREMENT for table `user`
|
||||
--
|
||||
ALTER TABLE `user`
|
||||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
Reference in New Issue
Block a user