-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappointment.sql
More file actions
397 lines (341 loc) · 21.8 KB
/
Copy pathappointment.sql
File metadata and controls
397 lines (341 loc) · 21.8 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
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
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 28, 2026 at 06:05 AM
-- Server version: 10.4.28-MariaDB
-- PHP Version: 8.2.4
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `appointment`
--
-- --------------------------------------------------------
--
-- Table structure for table `announcement`
--
CREATE TABLE `announcement` (
`ID` int(11) NOT NULL,
`Title` varchar(1000) NOT NULL,
`Description` varchar(1000) NOT NULL,
`Author` varchar(1000) NOT NULL,
`Date` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `announcement`
--
INSERT INTO `announcement` (`ID`, `Title`, `Description`, `Author`, `Date`) VALUES
(3, 'RTU Sports Festival', 'Upcoming sports festival in the university will be conducted', 'HEAD', 'June 27, 2024'),
(6, 'RTU Work From Home', 'Due to the heat index all of the offices operation will be stopped. For your guidance and information', 'Department Head', 'June 17, 2024'),
(7, 'RTU Alumni', 'Celebration of alumni visitation to the university', 'Department Head', 'June 28, 2024');
-- --------------------------------------------------------
--
-- Table structure for table `employee_appointment`
--
CREATE TABLE `employee_appointment` (
`ID` int(11) NOT NULL,
`Name` varchar(2000) NOT NULL,
`Branch` varchar(2000) NOT NULL,
`Office` varchar(2000) NOT NULL,
`Employee` varchar(2000) NOT NULL,
`Contact` varchar(2000) NOT NULL,
`Email` varchar(2000) NOT NULL,
`Purpose` varchar(2000) NOT NULL,
`Date` varchar(200) NOT NULL,
`Time` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `employee_appointment`
--
INSERT INTO `employee_appointment` (`ID`, `Name`, `Branch`, `Office`, `Employee`, `Contact`, `Email`, `Purpose`, `Date`, `Time`) VALUES
(1, 'Juan Dela Cruz', 'Pasig Branch', 'Registrar', '1945-123950', '09485239522', 'juandelacruz44@gmail.com', 'Form 137', '2024-06-27', '8:15 AM'),
(2, 'Mikoto Mars', 'Mandaluyong Branch', 'Registrar', '2090-405923', '09428519399', 'mikotomars@gmail.com', 'Form 137', '2024-06-12', '8:00 AM');
-- --------------------------------------------------------
--
-- Table structure for table `guest_appointment`
--
CREATE TABLE `guest_appointment` (
`ID` int(11) NOT NULL,
`Branch` varchar(2000) NOT NULL,
`Office` varchar(2000) NOT NULL,
`Email` varchar(2000) NOT NULL,
`Contact` varchar(2000) NOT NULL,
`Name` varchar(2000) NOT NULL,
`Type` varchar(200) NOT NULL,
`Identity` varchar(200) NOT NULL,
`Purpose` varchar(2000) NOT NULL,
`Date` varchar(200) NOT NULL,
`Time` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `guest_appointment`
--
INSERT INTO `guest_appointment` (`ID`, `Branch`, `Office`, `Email`, `Contact`, `Name`, `Type`, `Identity`, `Purpose`, `Date`, `Time`) VALUES
(1, 'Mandaluyong Branch', 'MIS', 'lloydpapas55@gmail.com', '09688203011', 'Lloyd Papas', 'National ID', '123-5132-231', 'TOR', '2024-06-27', '8:30 AM'),
(2, 'Mandaluyong Branch', 'Registrar', 'sample1', '5673488576', 'Escanor Shin', 'National ID', '232-4195-234', 'Forms', '2024-06-18', '2:00 PM'),
(3, 'Mandaluyong Branch', 'Registrar', 'sample2@gmail.com', '5673488576', 'Escanor Shin', 'School ID', '2020-200407', 'Form', '2024-06-19', '8:00 AM'),
(4, 'Mandaluyong Branch', 'Registrar', 'student@gmail.com', '09488239866', 'Shin Boo', 'Smaple ID', '1-13-21-3-12-', 'Sample', '2024-06-26', '1:15 PM'),
(5, 'Mandaluyong Branch', 'Registrar', 'student2@gmail.com', '09488239866', 'Kenneth Coba', 'School', '2020-200407', 'Form', '2024-06-27', '8:45 AM'),
(6, 'Mandaluyong Branch', 'Registrar', 'validemail.gmail.con', '09488239866', 'Kenneth Leblte', 'Schook', '12893-4124', 'Form', '2024-06-25', '8:15 AM'),
(7, 'Pasig Branch', 'EDP', 'test@gmail.com', '09488239866', 'Kenneth Cobarrubias', 'Sample Id', 'Its me', 'asdasdas', '2024-06-28', '10:00 AM'),
(8, 'Mandaluyong Branch', 'Registrar', 'aasdasdas', 'asdasd', 'asdas dasd', 'dasd', 'asdas', 'asdasd', '2024-06-25', '8:30 AM'),
(9, 'Mandaluyong Branch', 'MIS', 'Finalsample@gmail.com', '09488239866', 'Kennet Coba', 'School', '09488239866', 'Random', '2024-06-28', '8:00 AM'),
(10, 'Mandaluyong Branch', 'Registrar', 'aaaaaaaaa', 'aaaaaaaaaaaaaaaa', 'aaaaaaaaaa aaaaaaaaaaaa', 'aaaaaaaaa', 'aaaaaaaaa', 'aaaaaaaaaaaaaa', '2024-06-25', '8:45 AM'),
(11, 'Mandaluyong Branch', 'MIS', 'kokocrunch@gmail.com', '2020-200407', 'Kenneth Cobarrubias', 'National', '123-4245-123', 'Regi Form', '2024-06-28', '8:15 AM'),
(12, 'Mandaluyong Branch', 'Registrar', 'lastnagmail@gmail.com', '5673488576', 'Escanor Shin', 'aaaaaa', 'aaaaaa', 'aaaaaaaa', '2024-06-27', '9:00 AM'),
(13, 'Mandaluyong Branch', 'Registrar', 'aaaaaaaaaaaa', 'aaaaaaaaa', 'aaaaaaaaa aaaaaaaa', 'aaaaaaaa', 'aaaaaaaaaaa', 'aaaaaaaaaaaaaaaaaaaaaaa', '2024-06-19', '8:15 AM'),
(14, 'Pasig Branch', 'Registrar', 'validemaaail.gmail.con', '5673488576', 'Escanor Shin', 'adasd', 'asdas', 'dsadas', '2024-06-26', '8:00 AM'),
(15, 'Mandaluyong Branch', 'MIS', 'aaaaaaaaaaaaaaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaaa aaaaaaaaaaaaaa', 'aaaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaaaaaaa', '2024-06-26', '8:15 AM'),
(16, 'Pasig Branch', 'EDP', 'bbbbbbbb', 'bbbbbbbbbbbbbbb', 'bbbbbbbbb bbbbbbbbbb', 'bbbbbbbbb', 'bbbbbbbbb', 'bbbbbbbbbbbbbbbbbbbbbbb', '2024-06-26', '8:30 AM'),
(17, 'Pasig Branch', 'Registrar', 'cccccccc', 'cccccccccc', 'cccccccccccc cccccccccc', 'ccccccccc', 'cccccccccc', 'cccccccccccccc', '2024-06-26', '8:45 AM'),
(18, 'Pasig Branch', 'Registrar', 'ddddddddd', 'dddddddd', 'ddddddddd ddddddddd', 'ddddddd', 'dddddddddd', 'ddddddddddddddddddd', '2024-06-19', '8:30 AM'),
(19, 'Mandaluyong Branch', 'MIS', 'pppppp', 'pppppppppppp', 'pppppppp ppppppppppp', 'pppppppp', 'pppppppp', 'ppppppppppp', '2024-06-24', '8:00 AM'),
(20, 'Pasig Branch', 'Registrar', 'asdasdasd', 'das', 'das das', 'asda', '', 'sdasdsa', '2024-06-14', '8:00 AM'),
(21, 'Mandaluyong Branch', 'MIS', 'tttttttttttttt', 'tttttttttttt', 'ttttttttttttttttttttt tttttttttttt', 'ttttttttttt', '', 'tttttttttttttttttttt', '2024-06-19', '8:45 AM'),
(22, 'Mandaluyong Branch', 'Registrar', 'uuuuuuuuu', 'uuuuuuuuuuuuuu', 'uuuuuuuuuu uuuuuuuuuuuuuuu', 'uuuuuuuuuuuu', 'uuuuuuuuuuu', 'uuuuuuuuuuuuuuuuuuuuuuu', '2024-06-25', '9:00 AM'),
(23, 'Mandaluyong Branch', 'MIS', 'iiiiiiiiiii', 'iiiiiiiiiiii', 'iiiiiiiiiii iiiiiiiii', 'iiiiiiiiii', 'iiiiiiiiii', 'iiiiiiiiiiiiiiii', '2024-06-25', '9:15 AM'),
(24, 'Pasig Branch', 'Registrar', 'wwwwwwwwwwww', 'wwwwwwwwwww', 'wwwwwww wwwwwwwww', 'wwwwwwwww', 'wwwwwwwwwwww', 'wwwwwwwwwwwwwwwww', '2024-06-24', '8:15 AM'),
(25, 'Mandaluyong Branch', 'MIS', 'validaaemail.gmail.con', '09488239866', 'Kenneth Cobarrubias', '2020-200407', '2020', 'Regi Form', '2024-06-27', '9:15 AM'),
(26, 'Mandaluyong Branch', 'Registrar', 'gggggggggggg', 'ggggggggg', 'ggggggggg ggggggggg', 'ggggggggggggg', 'ggggggggg', 'gggggggggggggggggg', '2024-06-24', '3:00 PM'),
(27, 'Mandaluyong Branch', 'Registrar', 'mikaela@gmail.com', '09488239866', 'Kenneth CObarrubias', 'asdasd', 'asdasd', 'asdsdasd', '2024-06-25', '9:30 AM'),
(28, 'Pasig Branch', 'Registrar', 'asdasda123123', 'dsadasd', 'asd asdasd', 'asdas', 'dasd', 'asdasdas', '2024-06-26', '9:00 AM'),
(29, 'Pasig Branch', 'EDP', 'asdasdasd4124', '5673488576', 'Escanor Shin', 'asda', 'as', 'dadasd', '2024-06-25', '9:45 AM'),
(30, 'Pasig Branch', 'Registrar', 'aasdasd555', 'qweqw', 'qweqwe qweqw', 'eqwe', 'qweqw', 'eqwewq', '2024-06-19', '9:00 AM'),
(31, 'Mandaluyong Branch', 'Registrar', 'htodog@gmail.com', '123123', 'asdasd asd', 'asdas', 'dasd', 'asdasdasd', '2024-07-23', '8:00 AM'),
(32, 'Mandaluyong Branch', 'MIS', 'jjjjjjjjjjjj', 'jjjjjjjjjjjjjj', 'jjjjjjjjjjj jjjjjjjjjj', 'jjjjjjjjjjjjjjjjj', 'jjjjjjjjjjjj', 'jjjjjjjjjjjjj', '2024-06-26', '2:30 PM'),
(33, 'Mandaluyong Branch', 'MIS', 'asdasd121213223', 'zzz', 'zzzzzzzzz zzzzzzzzz', 'zzzzzzz', 'zzzzzzzzzz', 'zzzzzzzzzz', '2024-06-25', '10:00 AM'),
(34, 'Mandaluyong Branch', 'MIS', '88', 'asd', 'asdsa adasd', 'dasd', 'asd', 'asdasd', '2024-06-27', '9:30 AM'),
(35, 'Mandaluyong Branch', 'MIS', '1gggg', 'asdasd', 'asda sda', 'dasd', 'sdas', 'asd', '2024-06-07', '8:00 AM'),
(36, 'Mandaluyong Branch', 'MIS', 'Tryqwie', 'dddd', 'dddddddd ddddddddddd', 'ddddddddd', 'dddddddd', 'dddddddddd', '2024-06-25', '10:15 AM'),
(37, 'Mandaluyong Branch', 'MIS', '77777', 'asdas', 'dasdasd asd', 'asd', 'ads', 'adssd', '2024-06-26', '9:15 AM'),
(38, 'Mandaluyong Branch', 'MIS', 'dfsdf', 'asdasd', 'asdas dasd', 'asdas', 'asd', 'asdasd', '2024-06-03', '1:00 PM'),
(39, 'Mandaluyong Branch', 'MIS', 'sample7777@gmail.com', '09488239866', 'Kenneth Cobarrubias', 'School Id', '2020-200407', 'Regi Form', '2024-06-28', '8:30 AM'),
(40, 'Mandaluyong Branch', 'MIS', 'asdhhhh', 'asdasd', 'dasd asdas', 'dasd', 'asd', 'asdas', '2024-06-24', '8:30 AM'),
(41, 'Mandaluyong Branch', 'Registrar', 'asdasd3123', '123', '123 123', '123', '213', '13123', '2024-06-18', '8:00 AM'),
(42, 'Mandaluyong Branch', 'MIS', 'mmmmmmmm', 'mmmmmmmmmm', 'mmmmmmmmm mmmmmmmmmmmmm', 'mmmmmmmmmmmm', 'mmmmmmmmmm', 'mmmmmmmmmmmmmm', '2024-06-25', '10:30 AM'),
(43, 'Mandaluyong Branch', 'MIS', 'llllllllllllllllll', 'llllllllllllllllllllll', 'llllllll llllllllll', 'lllllllllll', 'lllllllllllllll', 'lllllllllllllll', '2024-06-20', '8:00 AM'),
(44, 'Mandaluyong Branch', 'MIS', 'nmnmnmnmn', 'asdasd', 'asdsa da', 'asdas', 'sd', 'dasd', '2024-06-25', '10:45 AM'),
(45, 'Pasig Branch', 'EDP', 'rrrrrbbb', 'asdas', 'dd dddddddddd', 'ddddddddd', 'dddddddddd', 'ddddddddddddd', '2024-06-18', '8:15 AM'),
(46, 'Mandaluyong Branch', 'Registrar', 'asdvxcvxcvxc', 'asd', 'asd asdas', 'asdas', 'dsa', 'dasd', '2024-06-25', '11:00 AM'),
(47, 'Mandaluyong Branch', 'MIS', 'asdasd1236666', 'aa', 'aaaaaaaaaaaaa aaaaaaaaaa', 'aaaaaaaaaaaaaaa', 'aaaaaaaaaaaaaaaa', 'aaaaaaaa', '2024-06-24', '8:45 AM'),
(48, 'Mandaluyong Branch', 'MIS', 'add999999', 'asdasd', 'asdasd asdas', 'das', 'dsadas', 'dasd', '2024-06-27', '9:45 AM'),
(49, 'Pasig Branch', 'EDP', 'dhuashduahsud', '09488239866', 'Kenneh Cobarrubias', 'National ID', '2020-200407', 'Registration Form', '2024-06-28', '8:45 AM'),
(50, 'Mandaluyong Branch', 'Registrar', 'sample1@gmail.com', '09488239866', 'Kenneth Cobarrubias', 'Schook', '1', 'asd', '2024-06-26', '9:30 AM'),
(51, 'Pasig Branch', 'EDP', 'aksdjkajojjaskd', '09488239866', 'Rhina Corpuz', 'asdas', 'asdasd', 'asdasdas', '2024-06-20', '8:15 AM'),
(52, 'Mandaluyong Branch', 'MIS', 'ohmy.gmail.con', 'asdasdasd', 'Rhina Corpuz', 'adasdas', 'dasd', 'asdasdasd', '2024-06-13', '8:00 AM'),
(53, 'Mandaluyong Branch', 'MIS', 'asdasd6666666666', 'asdasd', 'adsas das', 'asdas', 'das', 'dasd', '2024-06-18', '8:30 AM'),
(54, 'Mandaluyong Branch', 'MIS', 'asdadasklaksdkaoskod', 'ssss', 'ssssssssss ssssssss', 'ssssssssssss', 'ssssssssss', 'sssssss', '2024-06-26', '9:45 AM'),
(55, 'Mandaluyong Branch', 'Registrar', 'umay', 'sss', 'sssssssss sssssss', 'ssssss', 'ssssssssss', 'ssssssssssss', '2024-06-20', '8:30 AM'),
(56, 'Mandaluyong Branch', 'Registrar', 'kennethcobarubias12@gmail.com', '09488239866', 'Rhina Corpuz', 'National', '213-1244-123', 'Form 137', '2024-06-17', '8:00 AM');
-- --------------------------------------------------------
--
-- Table structure for table `overall_appointments`
--
CREATE TABLE `overall_appointments` (
`ID` int(11) NOT NULL,
`Name` varchar(2000) NOT NULL,
`Date` varchar(2000) NOT NULL,
`Time` varchar(2000) NOT NULL,
`Office` varchar(2000) NOT NULL,
`Branch` varchar(2000) NOT NULL,
`Email` varchar(2000) NOT NULL,
`Type` varchar(2000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `overall_appointments`
--
INSERT INTO `overall_appointments` (`ID`, `Name`, `Date`, `Time`, `Office`, `Branch`, `Email`, `Type`) VALUES
(2, 'Kenneth Cobarrubias', '2024-06-19', '9:15 AM', 'MIS', 'Mandaluyong Branch', '2020-200407@rtu.edu.ph', 'Student'),
(6, 'Kenneth Cobarrubias', '2024-06-12', '1:00 PM', 'Registrar', 'Pasig Branch ', 'kennethcobarubias12@gmail.com', 'Student'),
(7, 'Escanor Shin', '2024-06-11', '2:00 PM', 'Registrar', 'Mandaluyong Branch', 'kennethcobarubias12@gmail.com', 'Guest'),
(8, 'Escanor Shin', '2024-06-19', '8:00 AM', 'Registrar', 'Mandaluyong Branch', 'sample2@gmail.com', 'Guest'),
(9, 'Shin Boo', '2024-06-26', '1:15 PM', 'Registrar', 'Mandaluyong Branch', 'student@gmail.com', 'Guest'),
(18, 'aaaaaaaaa aaaaaaaa', '2024-06-19', '8:15 AM', 'Registrar', 'Mandaluyong Branch', 'aaaaaaaaaaaa', 'Guest'),
(19, 'Escanor Shin', '2024-06-26', '8:00 AM', 'Registrar', 'Pasig Branch', 'validemaaail.gmail.con', 'Guest'),
(20, 'aaaaaaaaaaaaaaaaa aaaaaaaaaaaaaa', '2024-06-26', '8:15 AM', 'MIS', 'Mandaluyong Branch', 'aaaaaaaaaaaaaaaaaaaaaaaaa', 'Guest'),
(21, 'bbbbbbbbb bbbbbbbbbb', '2024-06-26', '8:30 AM', 'EDP', 'Pasig Branch', 'bbbbbbbb', 'Guest'),
(22, 'cccccccccccc cccccccccc', '2024-06-26', '8:45 AM', 'Registrar', 'Pasig Branch', 'cccccccc', 'Guest'),
(23, 'ddddddddd ddddddddd', '2024-06-19', '8:30 AM', 'Registrar', 'Pasig Branch', 'ddddddddd', 'Guest'),
(24, 'pppppppp ppppppppppp', '2024-06-24', '8:00 AM', 'MIS', 'Mandaluyong Branch', 'pppppp', 'Guest'),
(25, 'das das', '2024-06-14', '8:00 AM', 'Registrar', 'Pasig Branch', 'asdasdasd', 'Guest'),
(26, 'ttttttttttttttttttttt tttttttttttt', '2024-06-19', '8:45 AM', 'MIS', 'Mandaluyong Branch', 'tttttttttttttt', 'Guest'),
(29, 'wwwwwww wwwwwwwww', '2024-06-24', '8:15 AM', 'Registrar', 'Pasig Branch', 'wwwwwwwwwwww', 'Guest'),
(31, 'ggggggggg ggggggggg', '2024-06-24', '3:00 PM', 'Registrar', 'Mandaluyong Branch', 'gggggggggggg', 'Guest'),
(33, 'asd asdasd', '2024-06-26', '9:00 AM', 'Registrar', 'Pasig Branch', 'asdasda123123', 'Guest'),
(35, 'qweqwe qweqw', '2024-06-19', '9:00 AM', 'Registrar', 'Pasig Branch', 'aasdasd555', 'Guest'),
(36, 'asdasd asd', '2024-07-23', '8:00 AM', 'Registrar', 'Mandaluyong Branch', 'htodog@gmail.com', 'Guest'),
(37, 'jjjjjjjjjjj jjjjjjjjjj', '2024-06-26', '2:30 PM', 'MIS', 'Mandaluyong Branch', 'jjjjjjjjjjjj', 'Guest'),
(40, 'asda sda', '2024-06-07', '8:00 AM', 'MIS', 'Mandaluyong Branch', '1gggg', 'Guest'),
(42, 'dasdasd asd', '2024-06-26', '9:15 AM', 'MIS', 'Mandaluyong Branch', '77777', 'Guest'),
(43, 'asdas dasd', '2024-06-03', '1:00 PM', 'MIS', 'Mandaluyong Branch', 'dfsdf', 'Guest'),
(45, 'dasd asdas', '2024-06-24', '8:30 AM', 'MIS', 'Mandaluyong Branch', 'asdhhhh', 'Guest'),
(46, '123 123', '2024-06-18', '8:00 AM', 'Registrar', 'Mandaluyong Branch', 'asdasd3123', 'Guest'),
(48, 'llllllll llllllllll', '2024-06-20', '8:00 AM', 'MIS', 'Mandaluyong Branch', 'llllllllllllllllll', 'Guest'),
(50, 'dd dddddddddd', '2024-06-18', '8:15 AM', 'EDP', 'Pasig Branch', 'rrrrrbbb', 'Guest'),
(52, 'aaaaaaaaaaaaa aaaaaaaaaa', '2024-06-24', '8:45 AM', 'MIS', 'Mandaluyong Branch', 'asdasd1236666', 'Guest'),
(55, 'Kenneth Cobarrubias', '2024-06-26', '9:30 AM', 'Registrar', 'Mandaluyong Branch', 'sample1@gmail.com', 'Guest'),
(56, 'Rhina Corpuz', '2024-06-20', '8:15 AM', 'EDP', 'Pasig Branch', 'aksdjkajojjaskd', 'Guest'),
(58, 'adsas das', '2024-06-18', '8:30 AM', 'MIS', 'Mandaluyong Branch', 'asdasd6666666666', 'Guest'),
(59, 'ssssssssss ssssssss', '2024-06-26', '9:45 AM', 'MIS', 'Mandaluyong Branch', 'asdadasklaksdkaoskod', 'Guest'),
(60, 'sssssssss sssssss', '2024-06-20', '8:30 AM', 'Registrar', 'Mandaluyong Branch', 'umay', 'Guest'),
(62, 'Sukehiro Yami', '2024-06-04', '8:00 AM', 'MIS', 'Mandaluyong Branch ', 'yamisukegiro11@gmail.com', 'Student'),
(63, 'Nicky De Leon', '2024-07-24', '1:15 PM', 'MIS', 'Mandaluyong Branch ', 'nickydeleon88@gmail.com', 'Student'),
(64, 'Kenneth Cobarrubias', '2024-06-21', '2:00 PM', 'MIS', 'Mandaluyong Branch ', 'kennethcoba23@gmail.com', 'Student'),
(65, 'Sample Sample', '2024-06-21', '1:30 PM', 'MIS', 'Mandaluyong Branch ', 'anothersample@gmial.com', 'Student'),
(69, 'Kristoffer Papas', '2024-06-26', '10:45 AM', 'Registrar', 'Mandaluyong Branch', 'kristofferlloydpapas@gmail.com', 'Student'),
(70, 'Kenneth Cobarrubias', '2024-07-17', '8:00 AM', 'Registrar', 'Mandaluyong Branch ', 'kencobarrubias@gmail.com', 'Student');
-- --------------------------------------------------------
--
-- Table structure for table `restriction`
--
CREATE TABLE `restriction` (
`ID` int(11) NOT NULL,
`Date` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `restriction`
--
INSERT INTO `restriction` (`ID`, `Date`) VALUES
(1, '2024-06-05'),
(2, '2024-07-15'),
(3, '2024-06-09'),
(4, '2024-06-10'),
(6, '2024-06-27'),
(9, '2024-06-17'),
(10, '2024-06-28');
-- --------------------------------------------------------
--
-- Table structure for table `student_appointment`
--
CREATE TABLE `student_appointment` (
`ID` int(11) NOT NULL,
`Name` varchar(2000) NOT NULL,
`Branch` varchar(2000) NOT NULL,
`Office` varchar(2000) NOT NULL,
`Student` varchar(2000) NOT NULL,
`Contact` varchar(2000) NOT NULL,
`Email` varchar(2000) NOT NULL,
`Purpose` varchar(2000) NOT NULL,
`Date` varchar(200) NOT NULL,
`Time` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `student_appointment`
--
INSERT INTO `student_appointment` (`ID`, `Name`, `Branch`, `Office`, `Student`, `Contact`, `Email`, `Purpose`, `Date`, `Time`) VALUES
(11, 'Kenneth Cobarrubias', 'pasig', 'MIS', '2020-200407', '09488239866', 'kennethcobarrubias12@gmail.com', 'Registration Form', '2024-06-26', 'pasig'),
(12, 'Kenneth Cobarrubias', 'pasig', 'MIS', '2020-200407', '09488239866', '2020-200407@rtu.edu.ph', 'Registration Form', '2024-06-27', 'pasig'),
(13, 'Kenneth Cobarrubias', 'pasig', 'MIS', '2020-200407', '09488239866', '2020-200405@rtu.edu.ph', 'Registration Form', '2024-06-13', 'pasig'),
(14, 'Kenneth Cobarrubias', 'Pasig Branch', 'EDP', '2020-20407', '0948239866', 'kennethcobarubias12@gmail.com', 'Form 137', '2024-06-25', '8:00 AM'),
(15, 'Kenneth Cobarrubias', 'Pasig Branch', 'Registrar', '2020-200407', '09488239866', 'adasdasd@yahoo.com', 'Form 137', '2024-06-18', '1:00 PM'),
(16, 'Sukehiro Yami', 'Mandaluyong Branch', 'MIS', '1997-567392', '09788365722', 'yamisukegiro11@gmail.com', 'Registration Form', '2024-06-04', '8:00 AM'),
(17, 'Nicky De Leon', 'Mandaluyong Branch', 'MIS', '2020-200408', '09266381755', 'nickydeleon88@gmail.com', 'Registration Form', '2024-07-24', '1:15 PM'),
(18, 'Kenneth Cobarrubias', 'Mandaluyong Branch', 'MIS', '2020-200407', '09488239866', 'kennethcoba23@gmail.com', 'Registration Form', '2024-06-21', '2:00 PM'),
(19, 'Sample Sample', 'Mandaluyong Branch', 'MIS', 'Sample', 'Sample', 'anothersample@gmial.com', 'Sample', '2024-06-21', '1:30 PM'),
(20, 'Kenneth Cobarrubias', 'Mandaluyong Branch', 'MIS', '2020-200407', '094882309866', '2020-200407@rtu.edu.ph', 'Registration Form', '2024-06-17', '2:15 PM'),
(21, 'Rhina Corpuz', 'Mandaluyong Branch', 'Registrar', '2020-200405', '09488239866', 'rhinacorpuz20@gmail.com', 'Registration Form', '2024-06-18', '8:45 AM'),
(22, 'Kristoffer Papas', 'Mandaluyong Branch', 'Registrar', '2020-200407', '09488239866', 'kristofferlloydpapas@gmail.com', 'Mamimisti', '2024-06-19', '10:30 AM'),
(23, 'Kenneth Cobarrubias', 'Mandaluyong Branch', 'Registrar', '2020-20047', '09488239866', 'kencobarrubias@gmail.com', 'Registration Form', '2024-07-17', '8:00 AM');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`ID` int(11) NOT NULL,
`Username` text NOT NULL,
`Password` text NOT NULL,
`Name` text NOT NULL,
`Avatar` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`ID`, `Username`, `Password`, `Name`, `Avatar`) VALUES
(2, 'admin', 'admin', 'Kenneth L. Cobarrubias', ''),
(3, 'nickydeloen@gmail.com', 'nicky', 'Nicky De Leon', 'N/A');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `announcement`
--
ALTER TABLE `announcement`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `employee_appointment`
--
ALTER TABLE `employee_appointment`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `guest_appointment`
--
ALTER TABLE `guest_appointment`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `overall_appointments`
--
ALTER TABLE `overall_appointments`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `restriction`
--
ALTER TABLE `restriction`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `student_appointment`
--
ALTER TABLE `student_appointment`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `announcement`
--
ALTER TABLE `announcement`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `employee_appointment`
--
ALTER TABLE `employee_appointment`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `guest_appointment`
--
ALTER TABLE `guest_appointment`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;
--
-- AUTO_INCREMENT for table `overall_appointments`
--
ALTER TABLE `overall_appointments`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71;
--
-- AUTO_INCREMENT for table `restriction`
--
ALTER TABLE `restriction`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `student_appointment`
--
ALTER TABLE `student_appointment`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
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 */;