-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassmates.sql
284 lines (254 loc) · 17.9 KB
/
classmates.sql
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 07, 2015 at 11:48 AM
-- Server version: 5.5.16
-- PHP Version: 5.3.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 utf8 */;
--
-- Database: `classmates`
--
-- --------------------------------------------------------
--
-- Table structure for table `anouncements`
--
CREATE TABLE IF NOT EXISTS `anouncements` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`email` varchar(50) NOT NULL,
`name` varchar(100) NOT NULL,
`image` varchar(100) NOT NULL,
`college` varchar(50) NOT NULL,
`batch` varchar(50) NOT NULL,
`branch` varchar(50) NOT NULL,
`notice` varchar(1000) NOT NULL,
`Date` date NOT NULL,
`time_of` time NOT NULL,
`subject` varchar(100) NOT NULL,
`venue` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `anouncements`
--
INSERT INTO `anouncements` (`id`, `email`, `name`, `image`, `college`, `batch`, `branch`, `notice`, `Date`, `time_of`, `subject`, `venue`) VALUES
(1, '[email protected]', 'vidya sagar', '', 'RGUKT RKVALLEY', '2009', 'CSE', 'there is an internal lab exam', '0000-00-00', '05:30:00', 'OOSD EXAM', 'cse'),
(2, '[email protected]', 'vidya sagar', '', 'RGUKT RKVALLEY', '2009', 'CSE', 'our mue-7 farewell', '2015-04-26', '08:30:00', 'farewell', 's2'),
(3, '[email protected]', 'vidya sagar', '', 'RGUKT RKVALLEY', '2009', 'CSE', 'dfyddrr', '2012-05-01', '01:35:00', 'sad', 'dfgg'),
(4, '[email protected]', 'vidya sagar', '', 'RGUKT RKVALLEY', '2009', 'CSE', 'All the students need to show their project reports and have to give seminars on their project in consecutive days.', '0000-00-00', '00:00:09', 'Regarding project submission', 'Staff Room');
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE IF NOT EXISTS `comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parentid` text NOT NULL,
`from_add` varchar(50) NOT NULL,
`batch` varchar(50) NOT NULL,
`branch` varchar(100) NOT NULL,
`college` varchar(100) NOT NULL,
`name` varchar(50) NOT NULL,
`image` varchar(100) NOT NULL,
`comment` varchar(500) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
--
-- Dumping data for table `comments`
--
INSERT INTO `comments` (`id`, `parentid`, `from_add`, `batch`, `branch`, `college`, `name`, `image`, `comment`) VALUES
(1, '0', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'srikanth', 'nothing', 'this is my first comment'),
(2, '0', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'srikanth', 'nothing', 'this is my first comment'),
(3, '0', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'tisfa'),
(4, '', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'aasdasd'),
(5, '', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'asdsa'),
(6, '', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'asdsa'),
(7, '', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'asdsa'),
(8, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'adsas'),
(9, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'adsasasdweeee'),
(10, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'tis is my second post it tink but this is really aqesomsdflajsdfljalfjafaflasfasfasfsdfasf'),
(11, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'asfasf'),
(12, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'asfasf'),
(13, '3340', '[email protected]', 'asd', 'as', 'as', 'asd', 'asd', 'this is working'),
(14, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', ''),
(15, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', ''),
(16, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'sdcds'),
(17, '3344', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'hari', 'nothing', 'sdcds'),
(18, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'awesome!!!'),
(19, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'superb......'),
(20, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', ''),
(21, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', ''),
(22, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'this is sagar'),
(23, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'yeahh this is working adnf'),
(24, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'i hope this works'),
(25, '3354', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'sure i can its a piece of work'),
(26, '3355', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'here u go \n'),
(27, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'awefull'),
(28, '3351', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'yeah\n'),
(29, '3351', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'sssssssss'),
(30, '3358', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'yes I can'),
(31, '3359', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'this way'),
(32, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'not the last'),
(33, '3351', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'ushhhhhh'),
(34, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'jgjhghj'),
(35, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'fdd'),
(36, '3358', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'dd'),
(37, '3353', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'hey how u doing'),
(38, '3364', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'ffasdfa'),
(39, '3366', '[email protected]', '2009', 'CSE', 'RGUKT RKVALLEY', 'vidya sagar', 'nothing', 'hi\n,');
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE IF NOT EXISTS `messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`from_addr` varchar(50) NOT NULL,
`from_image` varchar(1000) NOT NULL,
`from_name` varchar(50) NOT NULL,
`to_addr` varchar(50) NOT NULL,
`to_image` varchar(1000) NOT NULL,
`to_name` varchar(50) NOT NULL,
`message_body` varchar(500) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ;
--
-- Dumping data for table `messages`
--
INSERT INTO `messages` (`id`, `from_addr`, `from_image`, `from_name`, `to_addr`, `to_image`, `to_name`, `message_body`) VALUES
(1, 'sdfa', '', 'sdfaf', 'sdf', '', 'sdf', 'sdf'),
(2, ' [email protected] ', 'fga', 'cena', '[email protected]', 'adfadf', 'sagar', 'this is the first message'),
(3, ' [email protected] ', 'fga', 'cena', '[email protected]', 'adfadf', 'sagar', 'this is sagar'),
(4, ' [email protected] ', 'fga', 'cena', '[email protected]', 'adfadf', 'sagar', 'fadsa'),
(5, '[email protected]', 'nothing', '', '[email protected]', 'nothing', 'vidya sagar', 'hi ra'),
(6, '[email protected]', 'nothing', '', '[email protected]', 'nothing', 'vidya sagar', 'hi ra'),
(7, '[email protected]', 'nothing', '', '[email protected]', 'nothing', 'vidya sagar', 'yes'),
(8, '[email protected]', 'nothing', 'vidya sagar', '[email protected]', 'nothing', 'vamsi', 'hi how r u?'),
(9, '[email protected]', 'nothing', 'vidya sagar', '[email protected]', 'nothing', 'vamsi', 'hello'),
(10, '[email protected]', 'nothing', '', '[email protected]', 'nothing', 'hari', 'sdasd'),
(11, '[email protected]', 'nothing', '', '[email protected]', 'nothing', 'hari', 'good'),
(12, '[email protected]', 'nothing', 'vidya sagar', '[email protected] ', 'nothing', 'cena', 'this'),
(13, '[email protected]', 'nothing', 'santarao', '[email protected]', 'nothing', 'vidya sagar', 'hi sagar how ru ?'),
(14, '[email protected]', 'nothing', 'hari', '[email protected]', 'nothing', 'vidya sagar', 'hi\n'),
(15, '[email protected]', 'nothing', 'hari', '[email protected]', 'nothing', 'vidya sagar', 'good\n'),
(16, '[email protected]', 'nothing', 'hari', '[email protected]', 'nothing', 'vidya sagar', 'fffgg'),
(17, '[email protected]', 'nothing', 'vidya sagar', '[email protected]', 'nothing', 'vidya sagar', 'srfdd'),
(18, '[email protected]', 'nothing', 'vidya sagar', '[email protected] ', 'nothing', 'cena', 'rsr'),
(19, '[email protected]', 'nothing', 'santarao', '[email protected]', 'nothing', 'vidya sagar', 'Hi Sagar how r u we are having project submission on 02 May Come asap.'),
(20, '[email protected]', 'nothing', 'sagar', '[email protected]', 'nothing', 'vamsi', 'hi'),
(21, '[email protected]', 'nothing', 'Bala Konda Reddy', '[email protected]', 'nothing', 'vamsi', 'hi vamshi\n'),
(22, '[email protected]', 'nothing', 'vidya sagar', '[email protected]', 'nothing', 'vamsi', 'hi\n');
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE IF NOT EXISTS `posts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`image` varchar(100) DEFAULT NULL,
`college` varchar(50) NOT NULL,
`batch` varchar(50) NOT NULL,
`branch` varchar(50) NOT NULL,
`from_add` varchar(50) NOT NULL,
`post` varchar(1000) NOT NULL,
`discuss` varchar(5) NOT NULL,
`challenge` varchar(5) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3370 ;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `name`, `image`, `college`, `batch`, `branch`, `from_add`, `post`, `discuss`, `challenge`) VALUES
(1, '', NULL, '', '', '', 'nrie', 'nrjn', '', ''),
(2, '', NULL, '', '', '', 'gflij', 'feki', '', ''),
(3, '', NULL, '', '', '', 'gflij', 'xzbdfg', '', ''),
(4, '', NULL, '', '', '', 'sas', 'as', '', ''),
(5, '', NULL, '', '', '', 'sada', 'sdf', '', ''),
(6, '', NULL, '', '', '', 'aaedas', 'sdfds', '', ''),
(8, '', NULL, '', '', '', 'sdf', 'vxc', '', ''),
(32, '', NULL, '', '', '', 'dsdf', 'sdf', '', ''),
(33, '', NULL, '', '', '', 'sdf', 'sdf', '', ''),
(311, '', NULL, '', '', '', 'dsdf', 'sdf', '', ''),
(334, '', NULL, '', '', '', 'ada', 'aa', '', ''),
(455, '', NULL, '', '', '', 'sdf', 'sdf', '', ''),
(1234, '', NULL, '', '', '', 'ad', 'd', '', ''),
(3333, '', NULL, '', '', '', 'sdsds', 'dsf', '', ''),
(3334, '', NULL, '', '', '', 'ADA', 'ASDAA', '', ''),
(3335, '', NULL, '', '', '', '[email protected]', 'this my first post', '', ''),
(3336, '', NULL, '', '', '', '[email protected]', 'this is my second post', '', ''),
(3337, '', NULL, '', '', '', '[email protected]', 'this is my third post', '', ''),
(3338, '', NULL, 'a', '', 's', '', '', '', ''),
(3339, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'This is my first post', '', ''),
(3340, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my second post', '', ''),
(3341, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my third post', '', ''),
(3342, 'srikanth', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is srikanth and his first post', '', ''),
(3343, 'srikanth', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is srikanth and his second post', '', ''),
(3344, 'hari', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is hari first post', '', ''),
(3345, 'hari', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is hari second post', '', ''),
(3346, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'type to post', '', ''),
(3347, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my post', '', ''),
(3348, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my first discussion', 'no', 'no'),
(3349, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my first challenge', 'no', 'yes'),
(3350, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', '', 'no', 'yes'),
(3351, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my first discussion i think', 'no', 'no'),
(3352, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my first correct discussion', 'yes', 'no'),
(3353, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my post after modifying', 'no', 'no'),
(3354, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'can you do this', 'no', 'yes'),
(3355, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my new challenge', 'no', 'yes'),
(3356, 'santarao', 'nothing', 'RGUKT-B', '2009', 'ECE', '[email protected]', 'this is my first post', 'no', 'no'),
(3357, 'santarao', 'nothing', 'RGUKT-B', '2009', 'ECE', '[email protected]', 'what is this', 'no', 'yes'),
(3358, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'can u beat me?', 'no', 'yes'),
(3359, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'how this works', 'yes', 'no'),
(3360, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'fggdf', 'no', 'no'),
(3361, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'tddd', 'no', 'yes'),
(3362, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'ftt', 'yes', 'no'),
(3363, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'type to post', 'no', 'no'),
(3364, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'Here we can post.\nThat will be visible in profiles', 'no', 'no'),
(3365, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'what is the difference between class and object?', 'no', 'yes'),
(3366, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'Can India beat Australia in Semi Final?', 'yes', 'no'),
(3367, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'type to post', 'no', 'no'),
(3368, 'Bala Konda Reddy', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'type to post', 'no', 'no'),
(3369, 'vidya sagar', 'nothing', 'RGUKT RKVALLEY', '2009', 'CSE', '[email protected]', 'this is my posts\n', 'no', 'no');
-- --------------------------------------------------------
--
-- Table structure for table `userinfo`
--
CREATE TABLE IF NOT EXISTS `userinfo` (
`firstname` varchar(20) NOT NULL,
`lastname` varchar(20) NOT NULL,
`gender` varchar(10) NOT NULL,
`email` varchar(20) NOT NULL,
`password` varchar(20) NOT NULL,
`seqques` varchar(50) NOT NULL,
`seqans` varchar(50) NOT NULL,
`clgname` varchar(30) NOT NULL,
`batch` varchar(20) NOT NULL,
`branch` varchar(20) NOT NULL,
`image` varchar(50) NOT NULL,
PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `userinfo`
--
INSERT INTO `userinfo` (`firstname`, `lastname`, `gender`, `email`, `password`, `seqques`, `seqans`, `clgname`, `batch`, `branch`, `image`) VALUES
('', '', '', '', '', 'What is favourite hero name?', '', 'RGUKT RKVALLEY', '', 'CSE', 'nothing'),
('sagar', 'vidya', 'male', '[email protected]', '123456789', 'What is favourite hero name?', 'aasdad', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('Bala Konda Reddy', 'M', 'male', '[email protected]', 'bala', 'What is your favourite hobbie?', 'singing', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('sagar', 'bula', 'male', '[email protected]', 'sagar619', 'whosafa', 'adfas', 'sasdf', 'adad', 'adfa', 'adfa'),
('vidya sagar', 'bula', 'male', '[email protected]', 'google', 'What is your favourite sport?', 'cricket', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('sagar', 'bula', 'mail', '[email protected]', 'adaf', 'adfa', 'adfae', 'afead', 'afd', 'dafd', 'afa'),
('abc', 'def', 'female', '[email protected]', 'FMI#', 'What is favourite hero name?', 'FNEJE,', 'RGUKT RKVALLEY', '2009 ', 'CSE', 'nothing'),
('hari', 'krishna', 'male', '[email protected]', 'hari', 'What is favourite hero name?', 'balayya', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('cena', 'john', 'male', '[email protected] ', 'cena', 'What is your favourite sport?', 'wrestling', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('kane', 'undr', 'male', '[email protected]', 'kane', 'What is your favourite sport?', 'wresti', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('santarao', 'jaru', 'male', '[email protected]', 'santa', 'What is favourite hero name?', 'prabash', 'RGUKT-B', '2009', 'ECE', 'nothing'),
('srikanth', 'yerramati', 'male', '[email protected]', 'wer', 'What is your favourite sport?', 'cricket', 'RGUKT RKVALLEY', '2009', 'CSE', 'nothing'),
('vamsi', 'krishna', 'male', '[email protected]', 'vamsi', 'What is favourite hero name?', 'cena', 'RGUKT-N', '2009', 'MECH', 'nothing');
/*!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 */;