-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalllab.sql
413 lines (354 loc) · 119 KB
/
alllab.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
-- MySQL dump 10.13 Distrib 5.5.39, for debian-linux-gnu (i686)
--
-- Host: localhost Database: alllab
-- ------------------------------------------------------
-- Server version 5.5.39-1
/*!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 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `clinician`
--
DROP TABLE IF EXISTS `clinician`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `clinician` (
`clinician` varchar(30) NOT NULL,
`code` varchar(30) NOT NULL,
PRIMARY KEY (`clinician`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `clinician`
--
LOCK TABLES `clinician` WRITE;
/*!40000 ALTER TABLE `clinician` DISABLE KEYS */;
INSERT INTO `clinician` VALUES ('ART','ART'),('Dentistry','DENT'),('Emergency Medicine','EMED'),('ENT','ENT'),('Medicine','MED'),('OG','OG'),('Opthalmology','OPTH'),('Orthopaedics','ORTHO'),('Paediatrics','PED'),('Plastic Surgery','PLASTIC'),('Psychiatry','PSYC'),('Skin','SKIN'),('Surgery','SUR'),('TB-Chest','TBCH'),('Unspecified','UNKN');
/*!40000 ALTER TABLE `clinician` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `examination`
--
DROP TABLE IF EXISTS `examination`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `examination` (
`result` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`unit` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`name_of_examination` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`id` int(11) NOT NULL,
`referance_range` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`preservative` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`method_of_analysis` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`sample_id` bigint(12) NOT NULL,
`code` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`details` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`NABL_Accredited` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`section` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`note` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`sample_id`,`id`),
CONSTRAINT `examination_ibfk_1` FOREIGN KEY (`sample_id`) REFERENCES `sample` (`sample_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `examination`
--
LOCK TABLES `examination` WRITE;
/*!40000 ALTER TABLE `examination` DISABLE KEYS */;
INSERT INTO `examination` VALUES ('','mg/dl','Glucose',1,'F:70-110 PP:<140 R:<200','Blood(Serum,Plasma)','Fluoride','GOD-POD endpoint',100002,'GLC','','Yes','BIO',''),('','mg/dl','Creatinine',4,'0.6-1.6','Blood(Serum,Plasma)','None','Jaffe two point',100003,'CR','','Yes','BIO',''),('','mg/dl','Urea',6,'15-45','Blood(Serum,Plasma)','None','Urease GLDH',100003,'URE','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100003,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100003,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100003,'IBIL','','Yes','BIO',''),('','mg/dl','Glucose',1,'F:70-110 PP:<140 R:<200','Blood(Serum,Plasma)','Fluoride','GOD-POD endpoint',100004,'GLC','','Yes','BIO',''),('','mg/dl','Creatinine',4,'0.6-1.6','Blood(Serum,Plasma)','None','Jaffe two point',100005,'CR','','Yes','BIO',''),('','mg/dl','Urea',6,'15-45','Blood(Serum,Plasma)','None','Urease GLDH',100005,'URE','','Yes','BIO',''),('','mg/dl','Total Protein',32,'N/A','Urine','None','pyrogallol red',100006,'MPR','','No','BIO',''),('','N/A','Protein/Creatinine',35,'< 0.1','Urine','None','Calculation',100006,'PRCR','','No','BIO',''),('','mg/day','Total Protein',40,'<150','Urine','None','Calculation',100006,'TPDAY','','No','BIO',''),('','gm/dl','Total Protein',60,'','Urine','None','Biuret',100006,'TP','','No','BIO',''),('','N/A','Calcium/Creatinine Ratio',62,'<0.2(Adults)','Urine','None','Calculation',100006,'CCR','','No','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100007,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100007,'TBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100008,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100008,'TBIL','','Yes','BIO',''),('','U/L','CK-MB',12,'0-24','Blood(Serum,Plasma)','None','Immunoinhibition kinetic',100008,'CKMB','','No','BIO',''),('','mg/dl','Cholesterol Total',13,'<200','Blood(Serum,Plasma)','None','CHO Peroxidase',100008,'CHO','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100009,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100009,'TBIL','','Yes','BIO',''),('','U/L','CK-MB',12,'0-24','Blood(Serum,Plasma)','None','Immunoinhibition kinetic',100009,'CKMB','','No','BIO',''),('','mg/dl','Cholesterol Total',13,'<200','Blood(Serum,Plasma)','None','CHO Peroxidase',100009,'CHO','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100010,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100010,'TBIL','','Yes','BIO',''),('','U/L','CK-MB',12,'0-24','Blood(Serum,Plasma)','None','Immunoinhibition kinetic',100010,'CKMB','','No','BIO',''),('','mg/dl','Cholesterol Total',13,'<200','Blood(Serum,Plasma)','None','CHO Peroxidase',100010,'CHO','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100011,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100011,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100011,'IBIL','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100012,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100012,'K','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100013,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100013,'K','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100014,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100014,'K','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100015,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100015,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100015,'IBIL','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100015,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100015,'K','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100016,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100016,'K','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100017,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100017,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100017,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100018,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100018,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100018,'IBIL','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100018,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100018,'K','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100019,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100019,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100019,'IBIL','','Yes','BIO',''),('','mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',100019,'NA','','Yes','BIO',''),('','mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',100019,'K','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100020,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100020,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100020,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100021,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100021,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100021,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100022,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100022,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100022,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100023,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100023,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100023,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100024,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100024,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100024,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100025,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100025,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100025,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100026,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100026,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100026,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100027,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100027,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100027,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100028,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100028,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100028,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100029,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100029,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100029,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100030,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100030,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100030,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100031,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100031,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100031,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100032,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100032,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100032,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100033,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100033,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100033,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100034,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100034,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100034,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100035,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100035,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100035,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100036,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100036,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100036,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100037,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100037,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100037,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100038,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100038,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100038,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100039,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100039,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100039,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100040,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100040,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100040,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100041,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100041,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100041,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100042,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100042,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100042,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100043,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100043,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100043,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100044,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100044,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100044,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100045,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100045,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100045,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100046,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100046,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100046,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100047,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100047,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100047,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100048,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100048,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100048,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100049,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100049,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100049,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100050,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100050,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100050,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100051,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100051,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100051,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100052,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100052,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100052,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100053,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100053,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100053,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100054,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100054,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100054,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100055,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100055,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100055,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100056,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100056,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100056,'IBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',100057,'DBIL','','Yes','BIO',''),('','mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',100057,'TBIL','','Yes','BIO',''),('','mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',100057,'IBIL','','Yes','BIO',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250001,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250002,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250003,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250004,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250005,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250006,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250007,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250008,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250009,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250010,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250011,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250012,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250013,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250014,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250015,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250016,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250017,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250018,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250019,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250020,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250021,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250022,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250023,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250024,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250025,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250026,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250027,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250028,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250029,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250030,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250031,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250032,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250033,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250034,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250035,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250036,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250037,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250038,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250039,'STUL','','no','CP',''),('','','Stool',601,'','Stool','None','Physical, Chemical,Microscopic',250040,'STUL','','no','CP',''),('','','Reticulocyte Count',701,'','Blood(Whole)','EDTA','',350001,'RET','','','HE',''),('','','Urine culture and sensitivity',1101,'','Urine','None','',650001,'','','','BEC',''),('','','Urine culture and sensitivity',1101,'','Urine','None','',650002,'URCS','','','BEC',''),('','','HBsAg',1201,'','Blood(Serum,Plasma)','None','',650003,'HBsAg','','','SER',''),('','','VDRL',1202,'','Blood(Serum,Plasma)','None','',650003,'VDRL','','','SER',''),('','','CRP',1203,'','Blood(Serum,Plasma)','None','',650003,'CRP','','','SER',''),('','','Urine culture and sensitivity',1101,'','Urine','None','',650004,'URCS','','','BEC',''),('','','HBsAg',1201,'','Blood(Serum,Plasma)','None','',650005,'HBsAg','','','SER',''),('','','VDRL',1202,'','Blood(Serum,Plasma)','None','',650005,'VDRL','','','SER',''),('','','CRP',1203,'','Blood(Serum,Plasma)','None','',650005,'CRP','','','SER',''),('','','HBsAg',1201,'','Blood(Serum,Plasma)','None','',650006,'HBsAg','','','SER',''),('','','Urine culture and sensitivity',1101,'','Urine','None','',650007,'URCS','','','BEC',''),('','','Urine culture and sensitivity',1101,'','Urine','None','',650008,'URCS','','','BEC',''),('','','Sickling Test',1401,'','Blood(Whole)','EDTA','',750001,'SKL','','','SK',''),('','','Sickling Test',1401,'','Blood(Whole)','EDTA','',750002,'SKL','','','SK',''),('','','HB Electrophoresis',1402,'','Blood(Whole)','EDTA','',750003,'HE','','','SK',''),('','','ICT/DCT',1305,'','Blood(Whole)','EDTA','',850001,'','','','IHBT',''),('','','Blood group',1301,'','Blood(Whole)','EDTA','',850002,'BLGR','','','IHBT',''),('','','ICT',1304,'','Blood(Serum,Plasma)','None','',850003,'ICT','','','IHBT',''),('','','DCT',1306,'','Blood(Serum,Plasma)','None','',850003,'DCT','','','IHBT',''),('','','Blood group',1301,'','Blood(Whole)','EDTA','',850004,'BLGR','','','IHBT',''),('','','ICT',1304,'','Blood(Serum,Plasma)','None','',850005,'ICT','','','IHBT',''),('','','DCT',1306,'','Blood(Serum,Plasma)','None','',850005,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',850006,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',850006,'DCT','','','IHBT',''),('','','Blood group',1301,'','Blood(Whole)','EDTA','',850007,'BLGR','','','IHBT',''),('','','Blood group',1302,'','Blood(Serum,Plasma)','None','',950001,'BLGR','','','IHBT',''),('','','Blood group',1302,'','Blood(Serum,Plasma)','None','',950002,'BLGR','','','IHBT',''),('','','Blood group',1302,'','Blood(Serum,Plasma)','None','',950003,'BLGR','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950009,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950009,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950011,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950011,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950013,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950013,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950014,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950014,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950015,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950015,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950016,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950016,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950017,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950017,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950018,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950018,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950019,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950019,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950020,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950020,'DCT','','','IHBT',''),('','','ICT',1305,'','Blood(Serum,Plasma)','EDTA','',950021,'ICT','','','IHBT',''),('','','DCT',1307,'','Blood(Serum,Plasma)','EDTA','',950021,'DCT','','','IHBT','');
/*!40000 ALTER TABLE `examination` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `location`
--
DROP TABLE IF EXISTS `location`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `location` (
`location` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `location`
--
LOCK TABLES `location` WRITE;
/*!40000 ALTER TABLE `location` DISABLE KEYS */;
INSERT INTO `location` VALUES ('E0(506)'),('E1(507)'),('E2(508)'),('E4(510)'),('F0(511)'),('F1(512)'),('F2(513)'),('F3(514)'),('F4(515)'),('G0(516)'),('G1(517)'),('G2(518)'),('G3(519)'),('G4(520)'),('H0(521)'),('H1(522)'),('H2(523)'),('H3(524)'),('H4(525)'),('NOW(311)'),('MOW(310)'),('FOW'),('Hemodialysis UNIT(741)'),('SICU(478)'),('MICU(500-2)'),('F3N(503)'),('Trauma Center(472-87)'),('Casualty(446)'),('Unspecified-'),('OPD'),('SwineFluWard(529)'),('LeptoWard(506)'),('E3(509)'),('PrisonerWard(310)'),('G0MICU(500)'),('Special Ward(570-71)'),('J1(527)'),('J2(528)'),('J3(529)'),('J4(530)'),('OBICU');
/*!40000 ALTER TABLE `location` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `macro`
--
DROP TABLE IF EXISTS `macro`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `macro` (
`examination_id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
PRIMARY KEY (`examination_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `macro`
--
LOCK TABLES `macro` WRITE;
/*!40000 ALTER TABLE `macro` DISABLE KEYS */;
INSERT INTO `macro` VALUES (7,'LFT+Stool+Retic'),(8,'LFT+Stool+Retic'),(9,'LFT+Stool+Retic'),(27,'Electrolyte'),(28,'Electrolyte'),(601,'LFT+Stool+Retic'),(701,'LFT+Stool+Retic');
/*!40000 ALTER TABLE `macro` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `preservative`
--
DROP TABLE IF EXISTS `preservative`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `preservative` (
`preservative` varchar(30) NOT NULL,
`str` varchar(2) NOT NULL,
PRIMARY KEY (`preservative`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `preservative`
--
LOCK TABLES `preservative` WRITE;
/*!40000 ALTER TABLE `preservative` DISABLE KEYS */;
INSERT INTO `preservative` VALUES ('30 ml 6M HCl','HC'),('Citrate','CT'),('EDTA','ED'),('Fluoride','FL'),('Heparin','HP'),('None','PL');
/*!40000 ALTER TABLE `preservative` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `profile`
--
DROP TABLE IF EXISTS `profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `profile` (
`profile` varchar(50) NOT NULL,
`T1` int(11) DEFAULT NULL,
`T2` int(11) DEFAULT NULL,
`T3` int(11) DEFAULT NULL,
`T4` int(11) DEFAULT NULL,
`T5` int(11) DEFAULT NULL,
`T6` varchar(50) NOT NULL,
`T7` varchar(50) NOT NULL,
`T8` varchar(50) NOT NULL,
`T9` varchar(50) NOT NULL,
`T10` varchar(10) NOT NULL,
`sample_type` varchar(30) DEFAULT NULL,
`preservative` varchar(30) DEFAULT NULL,
PRIMARY KEY (`profile`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `profile`
--
LOCK TABLES `profile` WRITE;
/*!40000 ALTER TABLE `profile` DISABLE KEYS */;
INSERT INTO `profile` VALUES ('24_Hrs_Urinary_Calcium',36,83,38,NULL,NULL,'','','','','','Urine','30 ml 6M HCl'),('ALB+TP',11,15,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('ALT+CRE',31,4,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('ALT_only',31,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('BIL_NICU',7,9,8,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('Calcium_creat_ratio',84,5,62,NULL,NULL,'','','','','','Urine','None'),('CSF_Special',2,17,NULL,NULL,NULL,'','','','','','CSF','None'),('Electrolyte',28,27,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('Glu_only',1,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma) ','None'),('L+R+E',4,7,8,9,NULL,'28','31','27','','','Blood(Serum,Plasma)','None'),('LDH_only',68,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('LFT',7,8,9,31,NULL,'','','','','','Blood(Serum,Plasma)','None'),('LFT-RFT',4,7,8,9,31,'','','','','','Blood(Serum,Plasma)','None'),('Lipid',13,10,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('MLFT',11,14,15,23,NULL,'','','','','','Blood(Serum,Plasma)','None'),('Protein_Electrophoresis',11,15,64,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('RFT',4,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('UA_only',21,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('urea_only',6,NULL,NULL,NULL,NULL,'','','','','','Blood(Serum,Plasma)','None'),('Z_Critical_Alert',1005,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Examination_Interference',1003,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Examination_Rejection',1002,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Remark',1007,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Sample_Rejection',1001,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Telephonic_Reporting',1004,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL),('Z_Withdrawn_Report',1006,NULL,NULL,NULL,NULL,'','','','','',NULL,NULL);
/*!40000 ALTER TABLE `profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sample`
--
DROP TABLE IF EXISTS `sample`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sample` (
`sample_id` bigint(12) NOT NULL AUTO_INCREMENT,
`patient_id` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`patient_name` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`clinician` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`unit` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`location` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_type` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`preservative` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_details` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`urgent` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`sex_age` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_receipt_time` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_collection_time` varchar(40) COLLATE utf8_unicode_ci NOT NULL,
`diagnosis` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`section` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`request_id` int(11) NOT NULL,
`extra` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`sample_id`)
) ENGINE=InnoDB AUTO_INCREMENT=950045 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sample`
--
LOCK TABLES `sample` WRITE;
/*!40000 ALTER TABLE `sample` DISABLE KEYS */;
INSERT INTO `sample` VALUES (100002,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Serum,Plasma)','Fluoride','Random','N','entered',NULL,'2016-01-28 13:00:09','2016-01-28 13:00:09',NULL,'BIO',1,'bharuch'),(100003,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:00:09','2016-01-28 13:00:09',NULL,'BIO',1,'bharuch'),(100004,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Serum,Plasma)','Fluoride','Random','N','entered',NULL,'2016-01-28 13:05:33','2016-01-28 13:05:33',NULL,'BIO',2,'surat'),(100005,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:05:34','2016-01-28 13:05:34',NULL,'BIO',2,'surat'),(100006,'SUR/16/01111111','ppp','OG','3','OPD','Urine','None','Post_Prendial','N','entered',NULL,'2016-01-30 14:36:50','2016-01-30 14:36:50',NULL,'BIO',7,'dwf\r\nerwe ewrwer\r\nwerwe M/64'),(100007,'SUR/16/00222222','Shaileshkumar Patel','ENT','3','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-02-01 13:13:07','2016-02-01 13:13:07',NULL,'BIO',34,'ee\r\neee\r\neee\r\neeee\r\neeeee\r\neeeee\r\neeeee'),(100008,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:00:55','2016-02-01 17:00:55',NULL,'BIO',45,''),(100009,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:02:06','2016-02-01 17:02:06',NULL,'BIO',45,''),(100010,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:03:43','2016-02-01 17:03:43',NULL,'BIO',45,''),(100011,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:22:32','2016-02-01 21:22:32',NULL,'BIO',49,''),(100012,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:23:50','2016-02-01 21:23:50',NULL,'BIO',49,''),(100013,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:31:49','2016-02-01 21:31:49',NULL,'BIO',49,''),(100014,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:33:52','2016-02-01 21:33:52',NULL,'BIO',49,''),(100015,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:35:04','2016-02-01 21:35:04',NULL,'BIO',49,''),(100016,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:51:06','2016-02-01 21:51:06',NULL,'BIO',49,''),(100017,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:51:20','2016-02-01 21:51:20',NULL,'BIO',49,''),(100018,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:53:01','2016-02-01 21:53:01',NULL,'BIO',49,''),(100019,'SUR/16/00001111','macroman','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-01 21:57:11','2016-02-01 21:57:11',NULL,'BIO',49,''),(100020,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:17:57','2016-02-02 09:17:57',NULL,'BIO',23,''),(100021,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:19:15','2016-02-02 09:19:15',NULL,'BIO',23,''),(100022,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:20:48','2016-02-02 09:20:48',NULL,'BIO',23,''),(100023,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:23:53','2016-02-02 09:23:53',NULL,'BIO',23,''),(100024,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:27:07','2016-02-02 09:27:07',NULL,'BIO',23,''),(100025,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:30:56','2016-02-02 09:30:56',NULL,'BIO',23,''),(100026,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:31:13','2016-02-02 09:31:13',NULL,'BIO',23,''),(100027,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:31:27','2016-02-02 09:31:27',NULL,'BIO',23,''),(100028,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:31:34','2016-02-02 09:31:34',NULL,'BIO',23,''),(100029,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:32:17','2016-02-02 09:32:17',NULL,'BIO',23,''),(100030,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:32:24','2016-02-02 09:32:24',NULL,'BIO',23,''),(100031,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:32:34','2016-02-02 09:32:34',NULL,'BIO',23,''),(100032,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:34:02','2016-02-02 09:34:02',NULL,'BIO',23,''),(100033,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:34:43','2016-02-02 09:34:43',NULL,'BIO',23,''),(100034,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:35:53','2016-02-02 09:35:53',NULL,'BIO',23,''),(100035,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:42:05','2016-02-02 09:42:05',NULL,'BIO',23,''),(100036,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:43:01','2016-02-02 09:43:01',NULL,'BIO',23,''),(100037,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:47:31','2016-02-02 09:47:31',NULL,'BIO',23,''),(100038,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:48:22','2016-02-02 09:48:22',NULL,'BIO',23,''),(100039,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 09:59:45','2016-02-02 09:59:45',NULL,'BIO',23,''),(100040,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:52:44','2016-02-02 11:52:44',NULL,'BIO',51,''),(100041,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:53:30','2016-02-02 11:53:30',NULL,'BIO',51,''),(100042,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:53:41','2016-02-02 11:53:41',NULL,'BIO',51,''),(100043,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:56:57','2016-02-02 11:56:57',NULL,'BIO',51,''),(100044,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:57:31','2016-02-02 11:57:31',NULL,'BIO',51,''),(100045,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:57:45','2016-02-02 11:57:45',NULL,'BIO',51,''),(100046,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:58:04','2016-02-02 11:58:04',NULL,'BIO',51,''),(100047,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:58:21','2016-02-02 11:58:21',NULL,'BIO',51,''),(100048,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:58:41','2016-02-02 11:58:41',NULL,'BIO',51,''),(100049,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:59:07','2016-02-02 11:59:07',NULL,'BIO',51,''),(100050,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:59:29','2016-02-02 11:59:29',NULL,'BIO',51,''),(100051,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 11:59:50','2016-02-02 11:59:50',NULL,'BIO',51,''),(100052,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:00:08','2016-02-02 12:00:08',NULL,'BIO',51,''),(100053,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:00:28','2016-02-02 12:00:28',NULL,'BIO',51,''),(100054,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:00:55','2016-02-02 12:00:55',NULL,'BIO',51,''),(100055,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:01:44','2016-02-02 12:01:44',NULL,'BIO',51,''),(100056,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:21:45','2016-02-02 12:21:45',NULL,'BIO',51,''),(100057,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Serum,Plasma)','None','Fasting','N','entered',NULL,'2016-02-02 12:22:03','2016-02-02 12:22:03',NULL,'BIO',51,''),(250001,'SUR/16/00001111','macroman','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-01 21:53:02','2016-02-01 21:53:02',NULL,'CP',49,''),(250002,'SUR/16/00001111','macroman','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-01 21:57:11','2016-02-01 21:57:11',NULL,'CP',49,''),(250003,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:17:57','2016-02-02 09:17:57',NULL,'CP',23,''),(250004,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:19:15','2016-02-02 09:19:15',NULL,'CP',23,''),(250005,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:20:48','2016-02-02 09:20:48',NULL,'CP',23,''),(250006,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:23:53','2016-02-02 09:23:53',NULL,'CP',23,''),(250007,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:27:07','2016-02-02 09:27:07',NULL,'CP',23,''),(250008,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:30:57','2016-02-02 09:30:57',NULL,'CP',23,''),(250009,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:31:13','2016-02-02 09:31:13',NULL,'CP',23,''),(250010,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:31:27','2016-02-02 09:31:27',NULL,'CP',23,''),(250011,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:31:34','2016-02-02 09:31:34',NULL,'CP',23,''),(250012,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:32:18','2016-02-02 09:32:18',NULL,'CP',23,''),(250013,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:32:25','2016-02-02 09:32:25',NULL,'CP',23,''),(250014,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:32:34','2016-02-02 09:32:34',NULL,'CP',23,''),(250015,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:34:03','2016-02-02 09:34:03',NULL,'CP',23,''),(250016,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:34:43','2016-02-02 09:34:43',NULL,'CP',23,''),(250017,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:35:53','2016-02-02 09:35:53',NULL,'CP',23,''),(250018,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:42:05','2016-02-02 09:42:05',NULL,'CP',23,''),(250019,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:43:02','2016-02-02 09:43:02',NULL,'CP',23,''),(250020,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:47:31','2016-02-02 09:47:31',NULL,'CP',23,''),(250021,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:48:22','2016-02-02 09:48:22',NULL,'CP',23,''),(250022,'SUR/16/11223344','nknkj','OG','3','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 09:59:46','2016-02-02 09:59:46',NULL,'CP',23,''),(250023,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:52:44','2016-02-02 11:52:44',NULL,'CP',51,''),(250024,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:53:30','2016-02-02 11:53:30',NULL,'CP',51,''),(250025,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:53:41','2016-02-02 11:53:41',NULL,'CP',51,''),(250026,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:56:58','2016-02-02 11:56:58',NULL,'CP',51,''),(250027,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:57:31','2016-02-02 11:57:31',NULL,'CP',51,''),(250028,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:57:45','2016-02-02 11:57:45',NULL,'CP',51,''),(250029,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:58:05','2016-02-02 11:58:05',NULL,'CP',51,''),(250030,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:58:21','2016-02-02 11:58:21',NULL,'CP',51,''),(250031,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:58:41','2016-02-02 11:58:41',NULL,'CP',51,''),(250032,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:59:07','2016-02-02 11:59:07',NULL,'CP',51,''),(250033,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:59:29','2016-02-02 11:59:29',NULL,'CP',51,''),(250034,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 11:59:50','2016-02-02 11:59:50',NULL,'CP',51,''),(250035,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:00:08','2016-02-02 12:00:08',NULL,'CP',51,''),(250036,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:00:28','2016-02-02 12:00:28',NULL,'CP',51,''),(250037,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:00:55','2016-02-02 12:00:55',NULL,'CP',51,''),(250038,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:01:44','2016-02-02 12:01:44',NULL,'CP',51,''),(250039,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:21:46','2016-02-02 12:21:46',NULL,'CP',51,''),(250040,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Stool','None','Fasting','N','entered',NULL,'2016-02-02 12:22:03','2016-02-02 12:22:03',NULL,'CP',51,''),(350001,'SUR/16/02223344','nknjhu','Plastic Surgery','5','OPD','Blood(Whole)','EDTA','Fasting','N','entered',NULL,'2016-02-02 12:22:03','2016-02-02 12:22:03',NULL,'HE',51,''),(650001,'SUR/16/00111111','viresh','ENT','2','OPD','Urine','None','Fasting','N','entered',NULL,'2016-01-28 11:51:50','2016-01-28 11:51:50',NULL,'BEC',111,''),(650002,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Urine','None','Random','N','entered',NULL,'2016-01-28 13:00:08','2016-01-28 13:00:08',NULL,'BEC',1,'bharuch'),(650003,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:00:10','2016-01-28 13:00:10',NULL,'SER',1,'bharuch'),(650004,'SUR/16/00000123','roma','Unspecified','-','OPD','Urine','None','Random','N','entered',NULL,'2016-01-28 13:05:33','2016-01-28 13:05:33',NULL,'BEC',2,'surat'),(650005,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:05:35','2016-01-28 13:05:35',NULL,'SER',2,'surat'),(650006,'SUR/16/00000234','mita','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:10:36','2016-01-28 13:10:36',NULL,'SER',4,'sutra'),(650007,'SUR/16/01111111','ppp','OG','3','OPD','Urine','None','Post_Prendial','N','entered',NULL,'2016-01-30 14:36:50','2016-01-30 14:36:50',NULL,'BEC',7,'dwf\r\nerwe ewrwer\r\nwerwe M/64'),(650008,'SUR/16/00022222','ooo','ENT','3','OPD','Urine','None','Fasting','N','entered',NULL,'2016-01-30 14:37:30','2016-01-30 14:37:30',NULL,'BEC',9,'sd'),(750001,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-01-28 13:00:11','2016-01-28 13:00:11',NULL,'SK',1,'bharuch'),(750002,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-01-28 13:05:36','2016-01-28 13:05:36',NULL,'SK',2,'surat'),(750003,'SUR/16/00222222','Shaileshkumar Patel','ENT','3','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-02-01 13:13:08','2016-02-01 13:13:08',NULL,'SK',34,'ee\r\neee\r\neee\r\neeee\r\neeeee\r\neeeee\r\neeeee'),(850001,'SUR/16/00111111','viresh','ENT','2','OPD','Blood(Whole)','EDTA','Fasting','N','entered',NULL,'2016-01-28 11:51:50','2016-01-28 11:51:50',NULL,'IHBT',111,''),(850002,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-01-28 13:00:10','2016-01-28 13:00:10',NULL,'IHBT',1,'bharuch'),(850003,'SUR/16/00000786','MANISHA','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:00:10','2016-01-28 13:00:10',NULL,'IHBT',1,'bharuch'),(850004,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-01-28 13:05:35','2016-01-28 13:05:35',NULL,'IHBT',2,'surat'),(850005,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Serum,Plasma)','None','Random','N','entered',NULL,'2016-01-28 13:05:35','2016-01-28 13:05:35',NULL,'IHBT',2,'surat'),(850006,'SUR/16/00000123','roma','Unspecified','-','OPD','Blood(Serum,Plasma)','EDTA','Random','N','entered',NULL,'2016-01-28 13:05:35','2016-01-28 13:05:35',NULL,'IHBT',2,'surat'),(850007,'SUR/16/00222222','Shaileshkumar Patel','ENT','3','OPD','Blood(Whole)','EDTA','Random','N','entered',NULL,'2016-02-01 13:13:07','2016-02-01 13:13:07',NULL,'IHBT',34,'ee\r\neee\r\neee\r\neeee\r\neeeee\r\neeeee\r\neeeee'),(850008,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(850009,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(850010,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(850011,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950001,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:00:55','2016-02-01 17:00:55',NULL,'IHBT',45,''),(950002,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:02:07','2016-02-01 17:02:07',NULL,'IHBT',45,''),(950003,'SUR/16/00888888','ii1','ENT','3','OPD','Blood(Serum,Plasma)','None','Post_Prendial','N','entered',NULL,'2016-02-01 17:03:43','2016-02-01 17:03:43',NULL,'IHBT',45,''),(950004,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950005,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950006,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950007,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950008,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950009,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:19:16','2016-02-02 09:19:16',NULL,'IHBT',23,''),(950010,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950011,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:23:53','2016-02-02 09:23:53',NULL,'IHBT',23,''),(950012,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950013,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:30:57','2016-02-02 09:30:57',NULL,'IHBT',23,''),(950014,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:31:13','2016-02-02 09:31:13',NULL,'IHBT',23,''),(950015,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:31:27','2016-02-02 09:31:27',NULL,'IHBT',23,''),(950016,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:31:34','2016-02-02 09:31:34',NULL,'IHBT',23,''),(950017,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:32:18','2016-02-02 09:32:18',NULL,'IHBT',23,''),(950018,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:32:25','2016-02-02 09:32:25',NULL,'IHBT',23,''),(950019,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:32:34','2016-02-02 09:32:34',NULL,'IHBT',23,''),(950020,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:34:03','2016-02-02 09:34:03',NULL,'IHBT',23,''),(950021,'SUR/16/11223344','nknkj','OG','3','OPD','Blood(Serum,Plasma)','EDTA','Fasting','N','entered',NULL,'2016-02-02 09:34:43','2016-02-02 09:34:43',NULL,'IHBT',23,''),(950022,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950023,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950024,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950025,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950026,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950027,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950028,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950029,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950030,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950031,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950032,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950033,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950034,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950035,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950036,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950037,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950038,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950039,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950040,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950041,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950042,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950043,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,''),(950044,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,'',0,'');
/*!40000 ALTER TABLE `sample` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sample_details`
--
DROP TABLE IF EXISTS `sample_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sample_details` (
`sample_details` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sample_details`
--
LOCK TABLES `sample_details` WRITE;
/*!40000 ALTER TABLE `sample_details` DISABLE KEYS */;
INSERT INTO `sample_details` VALUES ('Random'),('Fasting'),('Post_Prendial'),('Leuteal'),('GTT1'),('GTT3');
/*!40000 ALTER TABLE `sample_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sample_type`
--
DROP TABLE IF EXISTS `sample_type`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sample_type` (
`sample_type` varchar(30) NOT NULL,
`str` varchar(11) NOT NULL,
PRIMARY KEY (`sample_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sample_type`
--
LOCK TABLES `sample_type` WRITE;
/*!40000 ALTER TABLE `sample_type` DISABLE KEYS */;
INSERT INTO `sample_type` VALUES ('Ascitic fluid','FL'),('Blood(Serum,Plasma)','BL'),('Blood(Whole)','BL'),('CSF','FL'),('Other','OT'),('Semen','SN'),('Stool','ST'),('Tissue','TS'),('Urine','UR');
/*!40000 ALTER TABLE `sample_type` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `scope`
--
DROP TABLE IF EXISTS `scope`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scope` (
`result` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`unit` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`name_of_examination` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`id` int(11) NOT NULL,
`referance_range` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
`sample_type` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`preservative` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`method_of_analysis` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
`sample_id` int(11) DEFAULT NULL,
`code` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`Available` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`NABL_Accredited` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`TAT` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`instruction_for_patient_preparation` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
`instruction_for_patient_collected_sample` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`patient_consent` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`required_patient_and_family_info` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`preexamination_storage_requirement` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`maximum_duration_of_sample_collection` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`time_limit_to_request_as_additional_examination` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
`section` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`note` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `scope`
--
LOCK TABLES `scope` WRITE;
/*!40000 ALTER TABLE `scope` DISABLE KEYS */;
INSERT INTO `scope` VALUES (NULL,'mg/dl','Glucose',1,'F:70-110 PP:<140 R:<200','Blood(Serum,Plasma)','Fluoride','GOD-POD endpoint',NULL,'GLC','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Glucose',2,'40-70','CSF','Fluoride','GOD-POD endpoint',NULL,'GLC','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Glucose',3,'40-70','CSF','None','GOD-POD endpoint',NULL,'GLC','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Creatinine',4,'0.6-1.6','Blood(Serum,Plasma)','None','Jaffe two point',NULL,'CR','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Creatinine',5,'N/A','Urine','None','Jaffe two point',NULL,'CR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Urea',6,'15-45','Blood(Serum,Plasma)','None','Urease GLDH',NULL,'URE','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Bilirubin Direct',7,'0-0.3','Blood(Serum,Plasma)','None','Diazo Reaction in water',NULL,'DBIL','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Bilirubin Total',8,'0-2.0','Blood(Serum,Plasma)','None','Diazo Reaction with caffine',NULL,'TBIL','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Billirubin Indirect',9,'0-2.0','Blood(Serum,Plasma)','None','Calculation',NULL,'IBIL','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Triglycerides',10,'<150','Blood(Serum,Plasma)','None','Lipase GO POD',NULL,'TG','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Albumin',11,'3.5-5.5','Blood(Serum,Plasma)','None','BCG',NULL,'ALB','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','CK-MB',12,'0-24','Blood(Serum,Plasma)','None','Immunoinhibition kinetic',NULL,'CKMB','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Cholesterol Total',13,'<200','Blood(Serum,Plasma)','None','CHO Peroxidase',NULL,'CHO','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Alkaline Phosphatase',14,'42-128','Blood(Serum,Plasma)','None','pNPP,AMP',NULL,'ALP','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Total Protein',15,'6.5-8.5','Blood(Serum,Plasma)','None','Biuret',NULL,'TP','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Total Protein',16,'15-40','CSF','None','pyrogallol red',NULL,'MPR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Total Protein',17,'15-40','CSF','Fluoride','pyrogallol red',NULL,'MPR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Total Protein',18,'N/A','Other','None','pyrogallol red',NULL,'MPR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Total Protein',19,'N/A','Other','None','Biuret',NULL,'TP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Calcium',20,'8.5-11.0','Blood(Serum,Plasma)','None','Arsenazo III',NULL,'CAL','yes','No','Ward: 12 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Uric Acid',21,'2.6-7.2','Blood(Serum,Plasma)','None','Uricase Paroxidase',NULL,'UA','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Amylase',22,'N/A','Other','None','CNP-maltotriose',NULL,'AMY','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Amylase',23,'28-100','Blood(Serum,Plasma)','None','CNP-maltotriose',NULL,'AMY','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','HDL-Cholesterol',24,'>35','Blood(Serum,Plasma)','None','DS-Mg2+',NULL,'CHOH','yes','No','Ward: 24 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','VLDL - Cholesterol',25,'<30','Blood(Serum,Plasma)','None','Calculation',NULL,'CHOV','yes','Yes','Ward: 12 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','LDL - Cholesterol',26,'<130','Blood(Serum,Plasma)','None','Calculation',NULL,'CHOL','yes','Yes','Ward: 12 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mmol/l','Na+',27,'135-145','Blood(Serum,Plasma)','None','Ion-selective electrode',NULL,'NA','yes','Yes','Ward: 2 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 2 hours of collection','Request as additional examination within 2 hours of collection','BIO',''),(NULL,'mmol/l','K+',28,'3.5-5.5','Blood(Serum,Plasma)','None','Ion-selective electrode',NULL,'K','yes','Yes','Ward: 2 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 2 hours of collection','Request as additional examination within 2 hours of collection','BIO',''),(NULL,'mmol/l','Li+',29,'0.6-1.2','Blood(Serum,Plasma)','None','Ion-selective electrode',NULL,'LI','yes','Yes','Ward: 2 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 2 hours of collection','Request as additional examination within 2 hours of collection','BIO',''),(NULL,'N/A','Ketones',30,'N/A','Blood(Serum,Plasma)','None','Qualitative nitroprusside',NULL,'KTO','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','ALT',31,'<45','Blood(Serum,Plasma)','None','L-Alanine LDH UV Kinetic',NULL,'ALT','yes','Yes','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Total Protein',32,'N/A','Urine','None','pyrogallol red',NULL,'MPR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Glucose',33,'N/A','Other','None','GOD-POD endpoint',NULL,'GLC','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'microU/ml','TSH',34,'0.5-5.0','Blood(Serum,Plasma)','None','ELISA',NULL,'TSH','yes','No','7 days','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Protein/Creatinine',35,'< 0.1','Urine','None','Calculation',NULL,'PRCR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Calcium',36,'N/A','Urine','30 ml 6M HCl','Arsenazo III',NULL,'CAL','yes','No','Ward: 12 hours, OPD:24 hours','Send a plastic container with around 4 liters volume. It will be washed by the laboratory and approproate preservative will be added and returned for sample collection.','Do not throw away preservative liquid. Discard 8.00 am urine. There after collect urine in the container till 8 am next morning. Include last 8 am urine in container. Keep in refrigerator in between','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'ml/day','Urine Output',37,'N/A','Urine','None','Volumetric measurement',NULL,'UOUT','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','Discard 8.00 am urine. collect till 8.00 am next day. Include last urine at 8.00 am next day. store in refrigerator in between collection.','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'ml/day','Urine Output',38,'N/A','Urine','30 ml 6M HCl','Volumetric measurement',NULL,'UOUT','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','There is preservative inside.Donot discard it. Discard 8.00 am urine. collect till 8.00 am next day. Include last urine at 8.00 am next day. store in refrigerator in between collection.','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/day','Total Protein',40,'<150','Urine','None','Calculation',NULL,'TPDAY','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Lipase',43,'N/A','Other','None','Turbidometry',NULL,'LIP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Triglycerides',48,'N/A','Others','None','Lipase GO POD',NULL,'TG','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'pmol/L','Free T4',53,'10.3-34.7','Blood(Serum,Plasma)','None','ELISA',NULL,'FT4','yes','No','7 days','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'IU/ml','TPOAb',58,'<30','Blood(Serum,Plasma)','None','ELISA',NULL,'TPO','No','No','7 days','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Total Protein',60,NULL,'Urine','None','Biuret',NULL,'TP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mmol/l','Cl-',61,'98-107','Blood(Serum,Plasma)','None','ISE',NULL,'CL','No','Yes','Ward: 2 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Calcium/Creatinine Ratio',62,'<0.2(Adults)','Urine','None','Calculation',NULL,'CCR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Ketones',63,'N/A','Urine','None','Nitroprusside',NULL,'KTO','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Protein Electrophoresis',64,'N/A','Blood(Serum,Plasma)','None','Agarose pH 8.6 Veronal Buffer',NULL,'PRE','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Lipase',65,'0-5','Blood(Serum,Plasma)','None','Turbidometry',NULL,'LIP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/ml','Adenosine Deaminase',66,'<15','Blood(Serum,Plasma)','None','Berthelot',NULL,'ADA','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/ml','Adenosine Deaminase',67,'N/A','Other','None','Berthelot',NULL,'ADA','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','LDH',68,'250-450','Blood(Serum,Plasma)','None','LDH UV Kinetic',NULL,'LDH','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/L','CRP',69,'<6','Blood(Serum,Plasma)','None','Latex turbidimetry',NULL,'CRPT','No','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/L','CRP',70,'N/A','Other','None','Latex turbidimetry',NULL,'CRPT','No','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','LDH',71,'N/A','Other','None','LDH UV Kinetic',NULL,'LDH','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Bence Jones protein',74,'N/A','Urine','None','Heat Precipitation',NULL,'BJP','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','HB Electrophoresis',75,'N/A','Blood(Whole)','EDTA','agarose gel PH 8.6,TEB buffer',NULL,'HE','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','Sometimes results of same examination in parents and siblings is requested by the laboratory ','transport and store at ambient temperature if can be examined within 4 hours. Else store at 2-8 degree C. Do not freeze. Examined within 3 days.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Dithionite Test for HbS',76,'N/A','Blood(Whole)','EDTA','Dithionite',NULL,'DTS','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','Sometimes results of same examination in parents and siblings is requested by the laboratory ','transport and store at ambient temperature if can be examined within 4 hours. Else store at 2-8 degree C. Do not freeze. Examined within 3 days.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Cholesterol Total',78,'N/A','Other','None','CHO Peroxidase',NULL,'CHO','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/ml','Adenosine Deaminase',79,NULL,'CSF','None','Berthelot',NULL,'ADA','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','LDH',80,'N/A','CSF','None','LDH UV Kinetic',NULL,'LDH','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Benedict\'s Test',81,'N/A','Urine','None','Benedict\'s reaction',NULL,'BDT','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','paper chromatography',82,'N/A','Blood(Serum,Plasma)','None','butenol,acetic acid,water',NULL,'PCHRO','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/day','Calcium',83,'<200','Urine','N/A','Calculation',NULL,'DCAL','yes','No','Ward: 12 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'ng/mL','Ferritin',87,NULL,'Blood(Serum,Plasma)','None','ELISA',NULL,'FT','No','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Glucose',89,'N/A','Other','Fluoride','GOD-POD endpoint',NULL,'GLC','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','Cholinesterase',90,'3700-13000','Blood(Serum,Plasma)','None','Butyrylcholinesterase',NULL,'CHE','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'mg/dl','Creatinine',91,'0.6-1.6','Other','None','Jaffe two point',NULL,'CR','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'ng/ml','Ferritin',92,'32-500','Blood(Serum,Plasma)','None','ELISA',NULL,'FRT','No','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','paper chromatography',98,'N/A','Urine','None','butenol,acetic acid,water',NULL,'PCHRO','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'%','HbA1c',99,'<6.5','Blood(Whole)','EDTA','Latex immunoturbidimetry',NULL,'HbA1c','No','no','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature if can be examined within 4 hours. Else store at 2-8 degree C. Do not freeze. Examined within 3 days.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'N/A','Protein Electrophoresis',102,'N/A','Urine','None','Agarose pH 8.6 Veronal Buffer',NULL,'PRE','yes','No','72 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'µg/dl','Iron',103,'50-175','Blood(Serum,Plasma)','None','Ferrozine',NULL,'IRON','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'µg/dl','TIBC',104,'250-450','Blood(Serum,Plasma)','None','Ferrozine,MgCO3',NULL,'TIBC','yes','No','24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Total Protein',105,'0.015-0.040','CSF','None','Biuret',NULL,'TP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Total Protein',106,'0.015-0.040','CSF','Fluoride','Biuret',NULL,'TP','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'U/L','AST',107,'<38','Blood(Serum,Plasma)','None','L-Aspartate MDH UV Kinetic',NULL,'AST','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Albumin',108,'N/A','Other','None','BCG',NULL,'ALB','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,'gm/dl','Albumin',109,'N/A','Ascitic fluid','None','BCG',NULL,'ALB','yes','No','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Stool',601,NULL,'Stool','None','Physical, Chemical,Microscopic',NULL,'STUL','yes','no','',NULL,'','','','','','','CP',''),(NULL,NULL,'Urine Examination',602,NULL,'Urine','None','',NULL,'UE','yes','','',NULL,'','','','','','','CP','Physical: \r\nGlucose:\r\nAlbumin:\r\npH:'),(NULL,NULL,'Semen Analysis',603,NULL,'Semen','None','',NULL,'SMN','yes','','',NULL,'','','','','','','CP',''),(NULL,NULL,'Reticulocyte Count',701,NULL,'Blood(Whole)','EDTA','',NULL,'RET','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Platelet Count',702,NULL,'Blood(Whole)','EDTA','',NULL,'PLTC','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Haematocrit',703,NULL,'Blood(Whole)','EDTA','',NULL,'HCT','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Fetal Hemoglobin',704,NULL,'Blood(Whole)','EDTA','',NULL,'HBF','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Prothombin Time',705,NULL,'Blood(Serum,Plasma)','Citrate','',NULL,'PT','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'G6PD',706,NULL,'Blood(Whole)','EDTA','',NULL,'G6PD','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'LE Cell',707,NULL,'Blood(Whole)','EDTA','',NULL,'LE','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Osmotic Fragility',708,NULL,'Blood(Whole)','Heparin','',NULL,'OF','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'CBC',709,NULL,'Blood(Whole)','EDTA','',NULL,'CBC','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Haemoglobin',710,NULL,'Blood(Whole)','EDTA','',NULL,'HB','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'PSMP',711,NULL,'Blood(Whole)','EDTA','',NULL,'PSMP','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'ESR',712,NULL,'Blood(Whole)','EDTA','',NULL,'ESR','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Absolue Eosinophil Count',713,NULL,'Blood(Whole)','EDTA','',NULL,'AEC','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Activated Partial Trhomboplastin Time',714,NULL,'Blood(Serum,Plasma)','Citrate','',NULL,'APTT','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'FDP',715,NULL,'Blood(Serum,Plasma)','Citrate','',NULL,'FDP','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Factor-8',716,NULL,'Blood(Serum,Plasma)','Citrate','',NULL,'F-8','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Factor-9',717,NULL,'Blood(Serum,Plasma)','Citrate','',NULL,'F-9','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Bleeding Time',718,NULL,'Blood(Whole)','None','',NULL,'BT','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Clotting Time',719,NULL,'Blood(Whole)','None','',NULL,'CT','yes','','',NULL,'','','','','','','HE',''),(NULL,NULL,'Z_Sample_Rejection',1001,NULL,'','','',NULL,'SR','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Examination_Rejection',1002,NULL,'','','',NULL,'ER','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Examination_Interference',1003,NULL,'','','',NULL,'EI','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Telephonic_Reporting',1004,NULL,'','','',NULL,'TR','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Critical_Alert',1005,NULL,'','','',NULL,'CRT','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Withdrawn_Report',1006,NULL,'','','',NULL,'WR','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Remark',1007,NULL,'','','',NULL,'RMR','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Z_Attachment',1008,NULL,'','','',NULL,'ATC','yes','','Ward: 4 hours, OPD:24 hours','No specific instruction','No specific instruction','No written consent required','None','transport and store at ambient temperature. Store separated serum/plasma at <(-20 degree C) if can not be examined within maximum duration of sample collection.','Send sample within 4 hours of collection','Request as additional examination within 4 hours of collection','BIO',''),(NULL,NULL,'Urine culture and sensitivity',1101,NULL,'Urine','None','',NULL,'URCS','yes','','',NULL,'','','','','','','BEC',''),(NULL,NULL,'HBsAg',1201,NULL,'Blood(Serum,Plasma)','None','',NULL,'HBsAg','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'VDRL',1202,NULL,'Blood(Serum,Plasma)','None','',NULL,'VDRL','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'CRP',1203,NULL,'Blood(Serum,Plasma)','None','',NULL,'CRP','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'ASO',1204,NULL,'Blood(Serum,Plasma)','None','',NULL,'ASO','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'RA',1205,NULL,'Blood(Serum,Plasma)','None','',NULL,'RA','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'HCV',1206,NULL,'Blood(Serum,Plasma)','None','',NULL,'HCV','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Antigen for Malaria parasite',1207,NULL,'Blood(Serum,Plasma)','None','',NULL,'AGMP','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'WIDAL',1208,NULL,'Blood(Serum,Plasma)','None','',NULL,'WIDAL','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'IgM antibody to Dangue',1209,NULL,'Blood(Serum,Plasma)','None','',NULL,'IGGDN','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'IgG antibody to Dangue',1210,NULL,'Blood(Serum,Plasma)','None','',NULL,'IGMDN','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Enterocheck-WB',1211,NULL,'Blood(Serum,Plasma)','None','',NULL,'ENTCHK','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'NS-1 Antigen Dangue',1212,NULL,'Blood(Serum,Plasma)','None','',NULL,'NS-1','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'IgM antibody to chickenguniya',1213,NULL,'Blood(Serum,Plasma)','None','',NULL,'IGMCHK','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Vit-D3',1214,NULL,'Blood(Serum,Plasma)','None','',NULL,'D-3','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Anti Nuclear Antibody',1215,NULL,'Blood(Serum,Plasma)','None','',NULL,'ANA','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Measles',1216,NULL,'Blood(Serum,Plasma)','None','',NULL,'MSLS','yes','','',NULL,'','','','','','','SER',''),(NULL,NULL,'Blood group',1301,NULL,'Blood(Whole)','EDTA','',NULL,'BLGR','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'Blood group',1302,NULL,'Blood(Serum,Plasma)','None','',NULL,'BLGR','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'ICT',1304,NULL,'Blood(Serum,Plasma)','None','',NULL,'ICT','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'ICT',1305,NULL,'Blood(Serum,Plasma)','EDTA','',NULL,'ICT','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'DCT',1306,NULL,'Blood(Serum,Plasma)','None','',NULL,'DCT','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'DCT',1307,NULL,'Blood(Serum,Plasma)','EDTA','',NULL,'DCT','yes','','',NULL,'','','','','','','IHBT',''),(NULL,NULL,'Sickling Test',1401,NULL,'Blood(Whole)','EDTA','',NULL,'SKL','yes','','',NULL,'','','','','','','SK',''),(NULL,NULL,'HB Electrophoresis',1402,NULL,'Blood(Whole)','EDTA','',NULL,'HE','yes','','',NULL,'','','','','','','SK','');
/*!40000 ALTER TABLE `scope` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `section`
--
DROP TABLE IF EXISTS `section`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `section` (
`section` varchar(5) NOT NULL,
`department` varchar(5) NOT NULL,
PRIMARY KEY (`section`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `section`
--
LOCK TABLES `section` WRITE;
/*!40000 ALTER TABLE `section` DISABLE KEYS */;
INSERT INTO `section` VALUES ('BEC','MICRO'),('BIO','BIO'),('CP','PATH'),('CY','PATHO'),('HE','PATHO'),('HP','PATHO'),('IHBT','IHBT'),('SER','MICRO'),('SK','PATHO');
/*!40000 ALTER TABLE `section` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `status`
--
DROP TABLE IF EXISTS `status`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `status` (
`status` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `status`
--
LOCK TABLES `status` WRITE;
/*!40000 ALTER TABLE `status` DISABLE KEYS */;
INSERT INTO `status` VALUES (''),('verified'),('entered'),('centrifuged'),('analysed'),('verification failed');
/*!40000 ALTER TABLE `status` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `unit`
--
DROP TABLE IF EXISTS `unit`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `unit` (
`unit` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `unit`
--
LOCK TABLES `unit` WRITE;
/*!40000 ALTER TABLE `unit` DISABLE KEYS */;
INSERT INTO `unit` VALUES ('1'),('2'),('3'),('4'),('5'),('6'),('A'),('B'),('-');
/*!40000 ALTER TABLE `unit` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `urgent`
--
DROP TABLE IF EXISTS `urgent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `urgent` (
`urgent` varchar(30) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `urgent`
--
LOCK TABLES `urgent` WRITE;
/*!40000 ALTER TABLE `urgent` DISABLE KEYS */;
INSERT INTO `urgent` VALUES ('N'),('Y');
/*!40000 ALTER TABLE `urgent` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-02-03 17:36:18