-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers_tb.sql
More file actions
57 lines (47 loc) · 1.45 KB
/
Copy pathusers_tb.sql
File metadata and controls
57 lines (47 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
-- phpMyAdmin SQL Dump
-- version 4.0.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 03, 2018 at 12:07 PM
-- Server version: 5.6.12-log
-- PHP Version: 5.4.16
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 utf8 */;
--
-- Database: `users_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `users_tb`
--
CREATE TABLE IF NOT EXISTS `users_tb` (
`sid` int(255) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`location` varchar(255) NOT NULL,
PRIMARY KEY (`sid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
--
-- Dumping data for table `users_tb`
--
INSERT INTO `users_tb` (`sid`, `name`, `location`) VALUES
(1, 'admin', 'kannur'),
(2, 'roopesh', 'banglore'),
(3, 'sree', 'talassery'),
(4, 'akhil', 'thalavil'),
(5, '.www.', '.www.'),
(8, '.er.', '.er.'),
(9, '.kerala.', '.kerala.'),
(10, '.hari.', '.kaloor.'),
(11, '.varun.', '.talip.'),
(12, '.tyu.', '.ytu.'),
(13, '.oooo.', '.ooooooo.'),
(14, '.o.', '.o.'),
(15, '.g.', '.g.');
/*!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 */;