-
Notifications
You must be signed in to change notification settings - Fork 1
/
db_obls.sql
446 lines (369 loc) · 19.8 KB
/
db_obls.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 24, 2018 at 03:53 PM
-- Server version: 10.1.30-MariaDB
-- PHP Version: 7.2.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
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: `db_obls`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_admin`
--
CREATE TABLE `tbl_admin` (
`id` int(11) NOT NULL,
`user` varchar(30) NOT NULL,
`pass` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_admin`
--
INSERT INTO `tbl_admin` (`id`, `user`, `pass`) VALUES
(1, 'admin', '123'),
(2, 'tipu', '123');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_ans`
--
CREATE TABLE `tbl_ans` (
`id` int(11) NOT NULL,
`quesNo` tinyint(4) NOT NULL,
`examid` int(11) NOT NULL,
`rightAns` tinyint(4) NOT NULL,
`ans` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_ans`
--
INSERT INTO `tbl_ans` (`id`, `quesNo`, `examid`, `rightAns`, `ans`) VALUES
(205, 1, 21, 0, 'Lotus'),
(206, 1, 21, 0, 'MS-Excel'),
(207, 1, 21, 1, 'Pascal'),
(208, 1, 21, 0, 'Netscape'),
(209, 2, 21, 0, 'Sand'),
(210, 2, 21, 1, 'Water'),
(211, 2, 21, 0, 'Cities'),
(212, 2, 21, 0, 'Mountain'),
(213, 1, 22, 0, 'playing'),
(214, 1, 22, 1, 'play'),
(215, 1, 22, 0, 'am playing'),
(216, 1, 22, 0, 'am play'),
(217, 2, 22, 0, 'try'),
(218, 2, 22, 0, 'tries'),
(219, 2, 22, 0, 'tried'),
(220, 2, 22, 1, 'is trying'),
(221, 3, 22, 0, 'obtain'),
(222, 3, 22, 0, 'get'),
(223, 3, 22, 0, 'need'),
(224, 3, 22, 1, 'botn 1 & 2'),
(225, 4, 22, 0, 'accept'),
(226, 4, 22, 1, 'reject'),
(227, 4, 22, 0, 'make'),
(228, 4, 22, 0, 'take');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_comment`
--
CREATE TABLE `tbl_comment` (
`id` int(11) NOT NULL,
`comment` text NOT NULL,
`postid` int(11) NOT NULL,
`username` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_comment`
--
INSERT INTO `tbl_comment` (`id`, `comment`, `postid`, `username`) VALUES
(1, 'This is first comment', 27, 'tipu'),
(2, 'Hello world commment', 27, 'tipu'),
(3, 'My another comment', 30, 'tipu'),
(4, 'Hello people', 30, 'tipu'),
(5, 'Hi i am niam', 32, 'niam'),
(6, 'I am tipu', 32, 'tipu'),
(7, 'Hi hello', 29, 'fkarim'),
(8, 'another show', 29, 'fkarim'),
(9, 'threee', 29, 'fkarim'),
(10, 'dsfs ddfs', 29, 'tipu'),
(11, 'sdfsd', 33, 'tipu'),
(12, 'dsfsdf', 27, 'tipu'),
(13, 'ada asd', 33, 'tipu'),
(14, 'aa dasd dasd', 34, 'tipu'),
(15, 'hello buddy', 35, 'tipu'),
(16, 'hello', 29, 'tipu'),
(17, 'asdfs', 29, ''),
(18, 'asdf', 29, 'tipu'),
(19, 'hi there', 29, 'kalam'),
(20, 'hello', 38, 'tipu'),
(21, 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et.', 38, 'tipu');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_exam`
--
CREATE TABLE `tbl_exam` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`subject` varchar(50) NOT NULL,
`author` varchar(50) NOT NULL,
`edate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_exam`
--
INSERT INTO `tbl_exam` (`id`, `name`, `subject`, `author`, `edate`) VALUES
(21, 'Quiz test 1', 'ICT', 'raihan', '2017-12-05 19:50:08'),
(22, 'Quiz test 1 fall', 'English', 'fkarim', '2017-12-05 20:06:07');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_post`
--
CREATE TABLE `tbl_post` (
`id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`description` text NOT NULL,
`user_id` int(4) NOT NULL,
`sub_id` int(4) NOT NULL,
`pdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_post`
--
INSERT INTO `tbl_post` (`id`, `title`, `description`, `user_id`, `sub_id`, `pdate`, `image`) VALUES
(27, 'This is my first title', 'Description about me Description about me\r\nDescription about me Description about me\r\nDescription about me Description about me', 1, 1, '2017-11-23 21:04:13', 'uploads/6f6122744f.jpg'),
(29, 'কোন পতà§à¦°à¦¿à¦•à¦¾à§Ÿ কবিতা পà§à¦°à¦•à¦¾à¦¶à§‡à¦° মাধà§à¦¯à¦®à§‡ বঙà§à¦•à¦¿à¦®à¦šà¦¨à§à¦¦à§à¦° চটà§à¦°à§‹à¦ªà¦¾à¦§à§à¦¯à¦¾à§Ÿà§‡à¦° সাহিতà§à¦¯ জীবনের সূচনা ঘটে?', '<ul class=\"wpProQuiz_questionList\" style=\"box-sizing: inherit; padding: 0px; margin: 0px 0px 1.5em 2em; font-variant-numeric: inherit; font-stretch: inherit; font-size: 13px; line-height: inherit; font-family: \'Helvetica Neue\', HelveticaNeue, Helvetica, Arial, \'Lucida Grande\', sans-serif; vertical-align: baseline; overflow: auto; color: #555555; list-style: none !important; border: 1px solid #d5d5d5 !important; background: #f7f7f7 !important;\" data-question_id=\"3577\" data-type=\"single\">\r\n<li class=\"wpProQuiz_questionListItem\" style=\"box-sizing: inherit; padding: 3px !important; border: 0px !important; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-image: none !important; list-style: none !important; margin: 0px 0px 5px !important 0px !important;\" data-pos=\"0\"><label style=\"box-sizing: inherit; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: inline; margin: 0px !important;\">বঙà§à¦—দরà§à¦¶à¦¨</label></li>\r\n<li class=\"wpProQuiz_questionListItem\" style=\"box-sizing: inherit; padding: 3px !important; border: 0px !important; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-image: none !important; list-style: none !important; margin: 0px 0px 5px !important 0px !important;\" data-pos=\"1\"><label style=\"box-sizing: inherit; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: inline; margin: 0px !important;\"><input class=\"wpProQuiz_questionInput\" style=\"color: #707070; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: 1rem; line-height: 1.5; font-family: SolaimanLipi, Arial, Vrinda, FallbackBengaliFont, Helvetica, sans-serif; padding: 0px; margin-top: 0px !important; margin-right: 0px !important; margin-left: 0px !important; display: inline !important; float: none !important;\" name=\"question_303_3577\" type=\"radio\" value=\"2\" /> সংবাদ পà§à¦°à¦à¦¾à¦•à¦°</label></li>\r\n<li class=\"wpProQuiz_questionListItem\" style=\"box-sizing: inherit; padding: 3px !important; border: 0px !important; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-image: none !important; list-style: none !important; margin: 0px 0px 5px !important 0px !important;\" data-pos=\"2\"><label style=\"box-sizing: inherit; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: inline; margin: 0px !important;\"><input class=\"wpProQuiz_questionInput\" style=\"color: #707070; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: 1rem; line-height: 1.5; font-family: SolaimanLipi, Arial, Vrinda, FallbackBengaliFont, Helvetica, sans-serif; padding: 0px; margin-top: 0px !important; margin-right: 0px !important; margin-left: 0px !important; display: inline !important; float: none !important;\" name=\"question_303_3577\" type=\"radio\" value=\"3\" /> ততà§à¦¤à§à¦¬à¦¬à§‹à¦§à¦¿à¦¨à§€</label></li>\r\n<li class=\"wpProQuiz_questionListItem\" style=\"box-sizing: inherit; padding: 3px !important; border: 0px !important; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-image: none !important; list-style: none !important; overflow: auto; margin: 0px 0px 0px !important 0px !important;\" data-pos=\"3\"><label style=\"box-sizing: inherit; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; display: inline; margin: 0px !important;\"><input class=\"wpProQuiz_questionInput\" style=\"color: #707070; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: 1rem; line-height: 1.5; font-family: SolaimanLipi, Arial, Vrinda, FallbackBengaliFont, Helvetica, sans-serif; padding: 0px; margin-top: 0px !important; margin-right: 0px !important; margin-left: 0px !important; display: inline !important; float: none !important;\" name=\"question_303_3577\" type=\"radio\" value=\"4\" /> সংবাদ কৌমà§à¦¦à§€</label></li>\r\n</ul>', 1, 1, '2017-11-23 21:12:19', ''),
(32, 'Post from another account', '<p>Post from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another accountPost from another account</p>', 2, 3, '2017-11-24 10:15:17', 'uploads/e471edaf95.jpg'),
(33, 'Whah is HTML', '<p>Hyper text markup lang</p>', 1, 6, '2017-11-26 13:46:39', 'uploads/532fb7de1b.jpg'),
(35, 'What is Lorem Ipsum?', '<p><strong style=\"margin: 0px; padding: 0px; font-family: \'Open Sans\', Arial, sans-serif; text-align: justify;\">Lorem Ipsum</strong><span style=\"font-family: \'Open Sans\', Arial, sans-serif; text-align: justify;\"> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span></p>', 1, 4, '2017-12-05 19:45:40', 'uploads/d6a1ee53a6.jpg'),
(36, 'Where does it come from?', '<p><span style=\"font-family: \'Open Sans\', Arial, sans-serif; text-align: justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"</span></p>', 1, 6, '2017-12-05 19:46:46', 'uploads/4736726ea6.jpg'),
(37, 'Where can I get some?', '<p><span style=\"font-family: \'Open Sans\', Arial, sans-serif; text-align: justify;\">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</span></p>', 1, 4, '2017-12-05 19:47:23', 'uploads/4a756cb350.png'),
(38, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit.', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam et fermentum dui. Ut orci quam, ornare sed lorem sed, hendrerit auctor dolor. Nulla viverra</p>\r\n<p>, nibh quis ultrices malesuada, ligula ipsum vulputate diam, aliquam egestas nibh ante vel dui. Sed in tellus interdum eros vulputate placerat sed non enim. Pellentesque eget.</p>', 1, 3, '2018-07-24 13:43:16', '');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_ques`
--
CREATE TABLE `tbl_ques` (
`id` int(11) NOT NULL,
`quesNo` int(11) NOT NULL,
`ques` text NOT NULL,
`examid` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_ques`
--
INSERT INTO `tbl_ques` (`id`, `quesNo`, `ques`, `examid`) VALUES
(52, 1, 'Which of the following is a programming language?', 21),
(53, 2, 'Which of the following covers most of the Earth\'s surface?', 21),
(54, 1, 'I ..... tennis every Sunday morning.', 22),
(55, 2, 'Don\'t make so much noise. Noriko ..... to study for her ESL test!', 22),
(56, 3, 'Synonyms of \'accept\'', 22),
(57, 4, 'Antonyms of \'deny\'', 22);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_result`
--
CREATE TABLE `tbl_result` (
`id` int(11) NOT NULL,
`exname` varchar(100) NOT NULL,
`exid` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`score` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_result`
--
INSERT INTO `tbl_result` (`id`, `exname`, `exid`, `userid`, `score`) VALUES
(25, 'Quiz test 1', 21, 1, 2),
(26, 'Quiz test 1 fall', 22, 1, 1),
(27, 'Quiz test 1', 21, 1, 1),
(28, 'Quiz test 1 fall', 22, 1, 0);
-- --------------------------------------------------------
--
-- Table structure for table `tbl_student`
--
CREATE TABLE `tbl_student` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(32) NOT NULL,
`class` int(11) NOT NULL,
`phone` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_student`
--
INSERT INTO `tbl_student` (`id`, `name`, `username`, `password`, `class`, `phone`) VALUES
(1, 'Tipu Sultan', 'tipu', '123', 10, '01837237303'),
(2, 'Md. Niamul Haque', 'niam', '123', 9, '01676630442'),
(3, 'Md. Abdullah', 'abdullah', '123', 10, '01675630441'),
(5, 'Bijory Hossain', 'bijory', '123', 10, '01675630214'),
(6, 'Bithi Akter', 'bithi', '123', 10, '017185421543'),
(8, 'Golam Rabbani', 'rabbni', '456', 0, '049689877'),
(9, 'Md. Manik', 'manik', '123', 10, '01534557458'),
(10, 'Roton Mia', 'roton', '123', 9, '01915630587'),
(11, 'Suzon Mia', 'szn', '123', 9, '01915630587'),
(12, 'Md Abul Kalam', 'kalam', '1111112333', 10, '234234234342'),
(13, 'Md Fazle Rabbii', 'rabbi', '234234', 9, '132423423423');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_subject`
--
CREATE TABLE `tbl_subject` (
`id` int(11) NOT NULL,
`name` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_subject`
--
INSERT INTO `tbl_subject` (`id`, `name`) VALUES
(1, 'Bangla'),
(2, 'English'),
(3, 'Mathematics'),
(4, 'Physics'),
(5, 'Chemistry'),
(6, 'ICT '),
(7, 'Biology'),
(8, 'Gloval Studies'),
(9, 'Religion & Moral Education ');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_teacher`
--
CREATE TABLE `tbl_teacher` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`username` varchar(50) NOT NULL,
`password` varchar(32) NOT NULL,
`degree` varchar(50) NOT NULL,
`phone` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tbl_teacher`
--
INSERT INTO `tbl_teacher` (`id`, `name`, `username`, `password`, `degree`, `phone`) VALUES
(1, 'Md Abul Kalam', 'Kalam', '123', 'M.A.', '0165987488'),
(3, 'Naym Mia', 'naym', '456', 'B.COM', '01675630445'),
(5, 'Raihan Sarkar', 'raihan', '123', 'MBA', '01715232504'),
(6, 'Rashed Hasan', 'rsd', '123', 'MSC', '01676645879'),
(7, 'Safwana Haque', 'safwana', '123', 'B. Sc.', '01715487569'),
(8, 'Golam Rabbani', 'rabbni', '456', 'M. Sc.', '049689877');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbl_admin`
--
ALTER TABLE `tbl_admin`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_ans`
--
ALTER TABLE `tbl_ans`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_comment`
--
ALTER TABLE `tbl_comment`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_exam`
--
ALTER TABLE `tbl_exam`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_post`
--
ALTER TABLE `tbl_post`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_ques`
--
ALTER TABLE `tbl_ques`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_result`
--
ALTER TABLE `tbl_result`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_student`
--
ALTER TABLE `tbl_student`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_subject`
--
ALTER TABLE `tbl_subject`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `tbl_teacher`
--
ALTER TABLE `tbl_teacher`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbl_admin`
--
ALTER TABLE `tbl_admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tbl_ans`
--
ALTER TABLE `tbl_ans`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=229;
--
-- AUTO_INCREMENT for table `tbl_comment`
--
ALTER TABLE `tbl_comment`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `tbl_exam`
--
ALTER TABLE `tbl_exam`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `tbl_post`
--
ALTER TABLE `tbl_post`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;
--
-- AUTO_INCREMENT for table `tbl_ques`
--
ALTER TABLE `tbl_ques`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=58;
--
-- AUTO_INCREMENT for table `tbl_result`
--
ALTER TABLE `tbl_result`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;
--
-- AUTO_INCREMENT for table `tbl_student`
--
ALTER TABLE `tbl_student`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `tbl_subject`
--
ALTER TABLE `tbl_subject`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `tbl_teacher`
--
ALTER TABLE `tbl_teacher`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
COMMIT;
/*!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 */;