-
Notifications
You must be signed in to change notification settings - Fork 7
/
health_guide.sql
3891 lines (3789 loc) · 87.3 KB
/
health_guide.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.2.7.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Jun 28, 2015 at 01:12 PM
-- Server version: 5.6.20
-- PHP Version: 5.5.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `health_guide`
--
-- --------------------------------------------------------
--
-- Table structure for table `about`
--
CREATE TABLE IF NOT EXISTS `about` (
`disease_name` varchar(40) NOT NULL,
`about_disease` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `about`
--
INSERT INTO `about` (`disease_name`, `about_disease`) VALUES
('asthma', 'Asthma is a disease affecting the airways that carry air to and from your lungs. People who suffer from this chronic condition [long-lasting or recurrent] are said to be asthmatic.\r\nThe inside walls of an asthmatic''s airways are swollen or inflamed. This swelling or inflammation makes the airways extremely sensitive to irritations and increases your susceptibility to an allergic reaction.\r\nAs inflammation causes the airways to become narrower, less air can pass through them, both to and from the lungs. Symptoms of the narrowing include wheezing [a hissing sound while breathing], chest tightness, breathing problems, and coughing. Asthmatics usually experience these symptoms most frequently during the night and the early morning.'),
('cholera', 'Cholera is an acute intestinal infection caused by ingestion of food or water contaminated with the bacterium Vibrio cholerae. It has a short incubation period, from less than one day to five days, and produces an enterotoxin that causes a copious, painless, watery diarrhoea that can quickly lead to severe dehydration and death if treatment is not promptly given. Vomiting also occurs in most patients.'),
('diabetes', 'Diabetes, often referred to by doctors as diabetes mellitus, describes a group of metabolic diseases in which the person has high blood glucose [blood sugar], either because insulin production is inadequate, or because the body''s cells do not respond properly to insulin, or both. Patients with high blood sugar will typically experience polyuria [frequent urination], they will become increasingly thirsty [polydipsia] and hungry [polyphagia].'),
('epilepsy', 'Epilepsy is a group of related disorders characterized by a tendency for recurrent seizures. There are different types of epilepsy and seizures. Epilepsy drugs are prescribed to control seizures, and rarely surgery is necessary if medications are ineffective.'),
('flu', 'The common cold, including chest cold and head cold, and seasonal flu are caused by viruses. Use over-the-counter cold medications to relieve symptoms including sore throat, runny nose, congestion, and cough. Flu symptoms are similar, but include fever, headache and muscle soreness. See a doctor who may prescribe antiviral medications Relenza or Tamiflu.'),
('jaundice', 'Jaundice, also known as icterus, is a term used to describe a yellowish tinge to the skin and sclerae [the white part of the eye] that is caused by hyperbilirubinemia [an excess of bilirubin in the blood]. Body fluids may also be yellow. The color of the skin and sclerae varies depending on levels of bilirubin; mildly elevated levels display yellow skin and sclerae, while highly elevated levels display brown'),
('malaria', 'Malaria is caused by a parasite called Plasmodium, which is transmitted via the bites of infected mosquitoes. In the human body, the parasites multiply in the liver, and then infect red blood cells.\r\n\r\nSymptoms of malaria include fever, headache, and vomiting, and usually appear between 10 and 15 days after the mosquito bite. If not treated, malaria can quickly become life-threatening by disrupting the blood supply to vital organs. In many parts of the world, the parasites have developed resistance to a number of malaria medicines.\r\n\r\nKey interventions to control malaria include: prompt and effective treatment with artemisinin-based combination therapies; use of insecticidal nets by people at risk; and indoor residual spraying with insecticide to control the vector mosquitoes.'),
('pnuemonia', 'Pneumonia is an infection of the lung that can be caused by nearly any class of organism known to cause human infections. These include bacteria, amoebae, viruses, fungi, and parasites. In the United States, pneumonia is the sixth most common disease leading to death; 2 million Americans develop pneumonia each year, and 40,000-70,000 die from it. Pneumonia is also the most common fatal infection acquired by already hospitalized patients. In developing countries, pneumonia ties with diarrhea as the most common cause of death. Even in nonfatal cases, pneumonia is a significant economic burden on the health care system. One study estimates that people in the American workforce who develop pneumonia cost employers five times as much in health care as the average worker.'),
('smallpox', 'Smallpox is a contagious, disfiguring and often deadly disease that has affected humans for thousands of years. Naturally occurring smallpox was eradicated worldwide by 1980 the result of an unprecedented global immunization campaign.\r\n\r\nSamples of smallpox virus have been kept for research purposes. This has led to concerns that smallpox could someday be used as a biological warfare agent.\r\n\r\nNo cure or treatment for smallpox exists. A vaccine can prevent smallpox, but the risk of the vaccine''s side effects is too high to justify routine vaccination for people at low risk of exposure to the smallpox virus.'),
('tubeculosis', 'Tuberculosis, or TB, is an infectious bacterial disease caused by Mycobacterium tuberculosis, which most commonly affects the lungs. It is transmitted from person to person via droplets from the throat and lungs of people with the active respiratory disease.\r\n\r\nIn healthy people, infection with Mycobacterium tuberculosis often causes no symptoms, since the person''s immune system acts to ?wall off? the bacteria. The symptoms of active TB of the lung are coughing, sometimes with sputum or blood, chest pains, weakness, weight loss, fever and night sweats. Tuberculosis is treatable with a six-month course of antibiotics.'),
('typhoid', 'Fever, \r\nHeadache,\r\nWeakness,\r\nfatigue,\r\nDry cough,\r\nLoss of appetite,\r\nAbdominal pain,\r\nDiarrhoea,\r\nconstipation,\r\nRash,\r\nContinuing high fever,\r\nEither diarrhoea,\r\nsevere constipation,\r\nConsiderable weight loss,\r\nExtreme distended abdomen,\r\nBecome delirious,\r\nLie motionless,\r\nexhausted with your eyes half closed');
-- --------------------------------------------------------
--
-- Table structure for table `asthma`
--
CREATE TABLE IF NOT EXISTS `asthma` (
`SYMPTOM` varchar(50) NOT NULL DEFAULT '',
`IN_DOCS` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `asthma`
--
INSERT INTO `asthma` (`SYMPTOM`, `IN_DOCS`) VALUES
('abdomendistendedextreme', 0),
('abdomenpain', 0),
('abdominalmusclestiff', 0),
('aggressionepisodes', 0),
('agitation', 0),
('anxiety', 1),
('appetiteexcessive', 0),
('appetitepoor', 0),
('armsmovementsuncontrollable', 0),
('armsstiff', 0),
('awarenessloss', 0),
('barkconstant', 0),
('behaviouraggressive', 0),
('behaviourerratic', 0),
('behaviourstrange', 0),
('bite', 0),
('bitepainsite', 0),
('biting', 0),
('blind', 0),
('bloodcoughtinged', 0),
('bloodnasaldischargeblood', 0),
('bloodpressurelow', 0),
('bodyaches', 0),
('bodyspasmspainful', 0),
('bodytemperaturelow', 0),
('breathbad', 0),
('breathingdifficult', 0),
('breathingincrease', 0),
('breathingrapid', 1),
('breathingshallow', 0),
('breathingtrouble', 1),
('breathingwheezingsevere', 0),
('breathshort', 2),
('browpain', 0),
('bruiseshealslow', 0),
('bruisesnotheal', 0),
('cheekspressurebehind', 0),
('chestfeeltight', 0),
('chestpain', 3),
('chestpressure', 2),
('chestspotspink', 0),
('chills', 0),
('cold', 2),
('coma', 0),
('concentrationlack', 0),
('confusion', 0),
('confusionmental', 0),
('confusiontemporary', 0),
('consciousnessloss', 0),
('constipation', 0),
('convulseviolent', 0),
('convulsions', 0),
('cough', 3),
('coughdry', 0),
('coughexercise', 2),
('coughgreen', 0),
('coughlaugh', 0),
('coughnight', 1),
('coughnon-stop', 0),
('coughrusty', 0),
('coughsticky', 0),
('coughthick', 0),
('cutshealslow', 0),
('cutsnotheal', 0),
('dehydrationmild', 0),
('dehydrationsevere', 0),
('delirium', 0),
('delusions', 0),
('dentalpain', 0),
('depression', 0),
('diarrhoeasevere', 0),
('diarrhoeasudden', 0),
('disorientation', 0),
('dizzinesspositionshift', 0),
('drowsinesssevere', 0),
('eatcravinganything', 0),
('energylack', 0),
('erectionsustained', 0),
('erectiontrouble', 0),
('excitementhigh', 0),
('exercisecoughwheezing', 0),
('exerciseweak', 0),
('exercisingtired', 0),
('exhalewheezing', 0),
('exhalewhistling', 0),
('exhaustion', 0),
('eyelidsmucousdry', 0),
('eyesclosedhalf', 0),
('eyespressurebehind', 0),
('eyeswhitesyellow', 0),
('facesweatpale', 0),
('facialcongestion', 0),
('facialpain', 0),
('fatigueextreme', 0),
('fatigueincreased', 0),
('fearno', 0),
('feetnumb', 0),
('fever', 0),
('fingernailsblue', 1),
('flu', 1),
('grinning', 0),
('groinitch', 0),
('grotesque', 0),
('grouchy', 1),
('growlingconstant', 0),
('guminfectionfrequent', 0),
('gumred', 0),
('gumspullaway', 0),
('gumswollen', 0),
('hairstandup', 0),
('hallucinations', 0),
('handnumb', 0),
('handtingle', 0),
('handtingling', 0),
('headache', 1),
('heartbeatfast', 0),
('heartbeatrapid', 0),
('hungerincrease', 0),
('hungerintense', 0),
('hydrophobia', 0),
('hyperactivity', 0),
('hyperalertness', 0),
('ill', 0),
('infectionsfrequent', 0),
('infectionsrecurring', 0),
('insomnia', 0),
('interestlack', 0),
('irritability', 0),
('jawcramp', 0),
('jointpain', 0),
('legsmovementsuncontrollable', 0),
('legsparalysislower', 0),
('legsstiff', 0),
('lethargy', 0),
('liemotionless', 0),
('lightpainbright', 0),
('lipsblue', 1),
('lipscolorblue', 0),
('lipscolorpurple', 0),
('lipsdiscolorationblue', 0),
('lipsdiscolorationpurple', 0),
('lockjaw', 0),
('lungfunctiondecrease', 1),
('malaise', 0),
('mendysfunctionsexual', 0),
('mood', 1),
('mouthblisters', 0),
('mouthdry', 0),
('mouthmucousdry', 0),
('mouthyellowcolor', 0),
('mucousyellow', 0),
('mucuscoughlittle', 0),
('mucusthickgreen', 0),
('mucusthickyellow', 0),
('musclecramps', 0),
('muscleincoordination', 0),
('musclescontractionpainful', 0),
('nailbedsblue', 0),
('nasal', 0),
('nasalblockage', 0),
('nasalcavitypus', 0),
('nasalcongestion', 1),
('nasaldischarge', 0),
('nasalobstruction', 0),
('nasalstuffiness', 0),
('nausea', 0),
('neckstiff', 0),
('necktight', 0),
('nosemucousdry', 0),
('noserunny', 1),
('nosestuffy', 0),
('not', 0),
('nothingstare', 0),
('panic', 1),
('paralysispartial', 0),
('pulserateincrease', 0),
('pupilsdilated', 0),
('rash', 0),
('rashpink', 0),
('rectumbleeding', 0),
('restlessness', 0),
('roam', 0),
('salivaexcessive', 0),
('salivaproductionexcessive', 0),
('sclerabrown', 0),
('sclerayellow', 0),
('seizures', 0),
('sensationtingling', 0),
('sensetingle', 0),
('severewatery', 0),
('shiver', 0),
('sick', 0),
('skinclammy', 0),
('skincoloryellow', 0),
('skindiscolorationyellow', 0),
('skinelasticitylost', 0),
('skininfections', 0),
('skinitchy', 0),
('skinrash', 0),
('skintingeyellow', 0),
('sleepproblems', 0),
('sleeptrouble', 2),
('smelldecrease', 0),
('smellloss', 0),
('sneezingallergies', 1),
('soreshealslow', 0),
('staringspell', 0),
('stomachcramps', 0),
('stomachmuscletight', 0),
('stomachpain', 0),
('stoolscolorclay', 0),
('stoolscolorlight', 0),
('stoolscolorpale', 0),
('swallowproblem', 0),
('sweats', 0),
('symptomspsychic', 0),
('talkdifficult', 0),
('tastedecrease', 0),
('teethachy', 0),
('teethchatter', 0),
('thirst', 0),
('thirstdisproportionate', 0),
('thirstexcessive', 0),
('thirstunusual', 0),
('thrashout', 0),
('throatmucousdry', 0),
('throatsore', 1),
('tired', 0),
('trembling', 0),
('unexplainedpain', 0),
('upseteasily', 0),
('urinationfrequent', 0),
('urinecolordark', 0),
('urinefrequent', 0),
('vaginalinfectionsfrequent', 0),
('vaginalitch', 0),
('visionblurred', 0),
('vomit', 0),
('vomiting', 0),
('vomitingpersistent', 0),
('waterfear', 0),
('weight', 0),
('weightgain', 0),
('weightloss', 0),
('well', 0),
('wheezing', 0),
('woundhealslow', 0),
('yeastinfections', 0);
-- --------------------------------------------------------
--
-- Table structure for table `cholera`
--
CREATE TABLE IF NOT EXISTS `cholera` (
`SYMPTOM` varchar(50) NOT NULL DEFAULT '',
`IN_DOCS` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cholera`
--
INSERT INTO `cholera` (`SYMPTOM`, `IN_DOCS`) VALUES
('abdomendistendedextreme', 0),
('abdomenpain', 0),
('abdominalmusclestiff', 0),
('aggressionepisodes', 0),
('agitation', 0),
('anxiety', 0),
('appetiteexcessive', 0),
('appetitepoor', 0),
('armsmovementsuncontrollable', 0),
('armsstiff', 0),
('awarenessloss', 0),
('barkconstant', 0),
('behaviouraggressive', 0),
('behaviourerratic', 0),
('behaviourstrange', 0),
('bite', 0),
('bitepainsite', 0),
('biting', 0),
('blind', 0),
('bloodcoughtinged', 0),
('bloodnasaldischargeblood', 0),
('bloodpressurelow', 1),
('bodyaches', 0),
('bodyspasmspainful', 0),
('bodytemperaturelow', 0),
('breathbad', 0),
('breathingdifficult', 0),
('breathingincrease', 0),
('breathingrapid', 0),
('breathingshallow', 0),
('breathingtrouble', 0),
('breathingwheezingsevere', 0),
('breathshort', 0),
('browpain', 0),
('bruiseshealslow', 0),
('bruisesnotheal', 0),
('cheekspressurebehind', 0),
('chestfeeltight', 0),
('chestpain', 0),
('chestpressure', 0),
('chestspotspink', 0),
('chills', 0),
('cold', 0),
('coma', 1),
('concentrationlack', 0),
('confusion', 0),
('confusionmental', 0),
('confusiontemporary', 0),
('consciousnessloss', 0),
('constipation', 0),
('convulseviolent', 0),
('convulsions', 1),
('cough', 0),
('coughdry', 0),
('coughexercise', 0),
('coughgreen', 0),
('coughlaugh', 0),
('coughnight', 0),
('coughnon-stop', 0),
('coughrusty', 0),
('coughsticky', 0),
('coughthick', 0),
('cutshealslow', 0),
('cutsnotheal', 0),
('dehydrationmild', 1),
('dehydrationsevere', 1),
('delirium', 0),
('delusions', 0),
('dentalpain', 0),
('depression', 0),
('diarrhoeasevere', 1),
('diarrhoeasudden', 1),
('disorientation', 0),
('dizzinesspositionshift', 0),
('drowsinesssevere', 1),
('eatcravinganything', 0),
('energylack', 0),
('erectionsustained', 0),
('erectiontrouble', 0),
('excitementhigh', 0),
('exercisecoughwheezing', 0),
('exerciseweak', 0),
('exercisingtired', 0),
('exhalewheezing', 0),
('exhalewhistling', 0),
('exhaustion', 0),
('eyelidsmucousdry', 1),
('eyesclosedhalf', 0),
('eyespressurebehind', 0),
('eyeswhitesyellow', 0),
('facesweatpale', 0),
('facialcongestion', 0),
('facialpain', 0),
('fatigueextreme', 0),
('fatigueincreased', 0),
('fearno', 0),
('feetnumb', 0),
('fever', 1),
('fingernailsblue', 0),
('flu', 0),
('grinning', 0),
('groinitch', 0),
('grotesque', 0),
('grouchy', 0),
('growlingconstant', 0),
('guminfectionfrequent', 0),
('gumred', 0),
('gumspullaway', 0),
('gumswollen', 0),
('hairstandup', 0),
('hallucinations', 0),
('handnumb', 0),
('handtingle', 0),
('handtingling', 0),
('headache', 0),
('heartbeatfast', 0),
('heartbeatrapid', 1),
('hungerincrease', 0),
('hungerintense', 0),
('hydrophobia', 0),
('hyperactivity', 0),
('hyperalertness', 0),
('ill', 0),
('infectionsfrequent', 0),
('infectionsrecurring', 0),
('insomnia', 0),
('interestlack', 0),
('irritability', 0),
('jawcramp', 0),
('jointpain', 0),
('legsmovementsuncontrollable', 0),
('legsparalysislower', 0),
('legsstiff', 0),
('lethargy', 0),
('liemotionless', 0),
('lightpainbright', 0),
('lipsblue', 0),
('lipscolorblue', 0),
('lipscolorpurple', 0),
('lipsdiscolorationblue', 0),
('lipsdiscolorationpurple', 0),
('lockjaw', 0),
('lungfunctiondecrease', 0),
('malaise', 0),
('mendysfunctionsexual', 0),
('mood', 0),
('mouthblisters', 0),
('mouthdry', 0),
('mouthmucousdry', 1),
('mouthyellowcolor', 0),
('mucousyellow', 0),
('mucuscoughlittle', 0),
('mucusthickgreen', 0),
('mucusthickyellow', 0),
('musclecramps', 0),
('muscleincoordination', 0),
('musclescontractionpainful', 0),
('nailbedsblue', 0),
('nasal', 0),
('nasalblockage', 0),
('nasalcavitypus', 0),
('nasalcongestion', 0),
('nasaldischarge', 0),
('nasalobstruction', 0),
('nasalstuffiness', 0),
('nausea', 1),
('neckstiff', 0),
('necktight', 0),
('nosemucousdry', 1),
('noserunny', 0),
('nosestuffy', 0),
('not', 0),
('nothingstare', 0),
('panic', 0),
('paralysispartial', 0),
('pulserateincrease', 0),
('pupilsdilated', 0),
('rash', 0),
('rashpink', 0),
('rectumbleeding', 0),
('restlessness', 0),
('roam', 0),
('salivaexcessive', 0),
('salivaproductionexcessive', 0),
('sclerabrown', 0),
('sclerayellow', 0),
('seizures', 0),
('sensationtingling', 0),
('sensetingle', 0),
('severewatery', 0),
('shiver', 0),
('sick', 1),
('skinclammy', 0),
('skincoloryellow', 0),
('skindiscolorationyellow', 0),
('skinelasticitylost', 0),
('skininfections', 0),
('skinitchy', 0),
('skinrash', 0),
('skintingeyellow', 0),
('sleepproblems', 0),
('sleeptrouble', 0),
('smelldecrease', 0),
('smellloss', 0),
('sneezingallergies', 0),
('soreshealslow', 0),
('staringspell', 0),
('stomachcramps', 1),
('stomachmuscletight', 0),
('stomachpain', 0),
('stoolscolorclay', 0),
('stoolscolorlight', 0),
('stoolscolorpale', 0),
('swallowproblem', 0),
('sweats', 0),
('symptomspsychic', 0),
('talkdifficult', 0),
('tastedecrease', 0),
('teethachy', 0),
('teethchatter', 0),
('thirst', 1),
('thirstdisproportionate', 0),
('thirstexcessive', 0),
('thirstunusual', 0),
('thrashout', 0),
('throatmucousdry', 1),
('throatsore', 0),
('tired', 0),
('trembling', 0),
('unexplainedpain', 0),
('upseteasily', 0),
('urinationfrequent', 0),
('urinecolordark', 0),
('urinefrequent', 0),
('vaginalinfectionsfrequent', 0),
('vaginalitch', 0),
('visionblurred', 0),
('vomit', 0),
('vomiting', 0),
('vomitingpersistent', 0),
('waterfear', 0),
('weight', 0),
('weightgain', 0),
('weightloss', 0),
('well', 0),
('wheezing', 0),
('woundhealslow', 0),
('yeastinfections', 0);
-- --------------------------------------------------------
--
-- Table structure for table `diabetes`
--
CREATE TABLE IF NOT EXISTS `diabetes` (
`SYMPTOM` varchar(50) NOT NULL DEFAULT '',
`IN_DOCS` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `diabetes`
--
INSERT INTO `diabetes` (`SYMPTOM`, `IN_DOCS`) VALUES
('abdomendistendedextreme', 0),
('abdomenpain', 0),
('abdominalmusclestiff', 0),
('aggressionepisodes', 0),
('agitation', 0),
('anxiety', 0),
('appetiteexcessive', 1),
('appetitepoor', 0),
('armsmovementsuncontrollable', 0),
('armsstiff', 0),
('awarenessloss', 0),
('barkconstant', 0),
('behaviouraggressive', 0),
('behaviourerratic', 0),
('behaviourstrange', 0),
('bite', 0),
('bitepainsite', 0),
('biting', 0),
('blind', 0),
('bloodcoughtinged', 0),
('bloodnasaldischargeblood', 0),
('bloodpressurelow', 0),
('bodyaches', 0),
('bodyspasmspainful', 0),
('bodytemperaturelow', 0),
('breathbad', 0),
('breathingdifficult', 0),
('breathingincrease', 0),
('breathingrapid', 0),
('breathingshallow', 0),
('breathingtrouble', 0),
('breathingwheezingsevere', 0),
('breathshort', 0),
('browpain', 0),
('bruiseshealslow', 1),
('bruisesnotheal', 0),
('cheekspressurebehind', 0),
('chestfeeltight', 0),
('chestpain', 0),
('chestpressure', 0),
('chestspotspink', 0),
('chills', 0),
('cold', 0),
('coma', 0),
('concentrationlack', 1),
('confusion', 0),
('confusionmental', 0),
('confusiontemporary', 0),
('consciousnessloss', 0),
('constipation', 0),
('convulseviolent', 0),
('convulsions', 0),
('cough', 0),
('coughdry', 0),
('coughexercise', 0),
('coughgreen', 0),
('coughlaugh', 0),
('coughnight', 0),
('coughnon-stop', 0),
('coughrusty', 0),
('coughsticky', 0),
('coughthick', 0),
('cutshealslow', 1),
('cutsnotheal', 0),
('dehydrationmild', 0),
('dehydrationsevere', 0),
('delirium', 0),
('delusions', 0),
('dentalpain', 0),
('depression', 0),
('diarrhoeasevere', 0),
('diarrhoeasudden', 0),
('disorientation', 0),
('dizzinesspositionshift', 0),
('drowsinesssevere', 0),
('eatcravinganything', 0),
('energylack', 1),
('erectionsustained', 0),
('erectiontrouble', 1),
('excitementhigh', 0),
('exercisecoughwheezing', 0),
('exerciseweak', 0),
('exercisingtired', 0),
('exhalewheezing', 0),
('exhalewhistling', 0),
('exhaustion', 0),
('eyelidsmucousdry', 0),
('eyesclosedhalf', 0),
('eyespressurebehind', 0),
('eyeswhitesyellow', 0),
('facesweatpale', 0),
('facialcongestion', 0),
('facialpain', 0),
('fatigueextreme', 1),
('fatigueincreased', 0),
('fearno', 0),
('feetnumb', 3),
('fever', 0),
('fingernailsblue', 0),
('flu', 0),
('grinning', 0),
('groinitch', 0),
('grotesque', 0),
('grouchy', 0),
('growlingconstant', 0),
('guminfectionfrequent', 1),
('gumred', 0),
('gumspullaway', 0),
('gumswollen', 0),
('hairstandup', 0),
('hallucinations', 0),
('handnumb', 0),
('handtingle', 0),
('handtingling', 0),
('headache', 0),
('heartbeatfast', 0),
('heartbeatrapid', 0),
('hungerincrease', 0),
('hungerintense', 0),
('hydrophobia', 0),
('hyperactivity', 0),
('hyperalertness', 0),
('ill', 0),
('infectionsfrequent', 2),
('infectionsrecurring', 0),
('insomnia', 0),
('interestlack', 1),
('irritability', 1),
('jawcramp', 0),
('jointpain', 0),
('legsmovementsuncontrollable', 0),
('legsparalysislower', 0),
('legsstiff', 0),
('lethargy', 0),
('liemotionless', 0),
('lightpainbright', 0),
('lipsblue', 0),
('lipscolorblue', 0),
('lipscolorpurple', 0),
('lipsdiscolorationblue', 0),
('lipsdiscolorationpurple', 0),
('lockjaw', 0),
('lungfunctiondecrease', 0),
('malaise', 0),
('mendysfunctionsexual', 0),
('mood', 0),
('mouthblisters', 0),
('mouthdry', 1),
('mouthmucousdry', 0),
('mouthyellowcolor', 0),
('mucousyellow', 0),
('mucuscoughlittle', 0),
('mucusthickgreen', 0),
('mucusthickyellow', 0),
('musclecramps', 0),
('muscleincoordination', 0),
('musclescontractionpainful', 0),
('nailbedsblue', 0),
('nasal', 0),
('nasalblockage', 0),
('nasalcavitypus', 0),
('nasalcongestion', 0),
('nasaldischarge', 0),
('nasalobstruction', 0),
('nasalstuffiness', 0),
('nausea', 1),
('neckstiff', 0),
('necktight', 0),
('nosemucousdry', 0),
('noserunny', 0),
('nosestuffy', 0),
('not', 0),
('nothingstare', 0),
('panic', 0),
('paralysispartial', 0),
('pulserateincrease', 0),
('pupilsdilated', 0),
('rash', 0),
('rashpink', 0),
('rectumbleeding', 0),
('restlessness', 0),
('roam', 0),
('salivaexcessive', 0),
('salivaproductionexcessive', 0),
('sclerabrown', 0),
('sclerayellow', 0),
('seizures', 0),
('sensationtingling', 0),
('sensetingle', 0),
('severewatery', 0),
('shiver', 0),
('sick', 0),
('skinclammy', 0),
('skincoloryellow', 0),
('skindiscolorationyellow', 0),
('skinelasticitylost', 0),
('skininfections', 1),
('skinitchy', 1),
('skinrash', 0),
('skintingeyellow', 0),
('sleepproblems', 0),
('sleeptrouble', 0),
('smelldecrease', 0),
('smellloss', 0),
('sneezingallergies', 0),
('soreshealslow', 1),
('staringspell', 0),
('stomachcramps', 0),
('stomachmuscletight', 0),
('stomachpain', 1),
('stoolscolorclay', 0),
('stoolscolorlight', 0),
('stoolscolorpale', 0),
('swallowproblem', 0),
('sweats', 0),
('symptomspsychic', 0),
('talkdifficult', 0),
('tastedecrease', 0),
('teethachy', 0),
('teethchatter', 0),
('thirst', 0),
('thirstdisproportionate', 1),
('thirstexcessive', 2),
('thirstunusual', 1),
('thrashout', 0),
('throatmucousdry', 0),
('throatsore', 0),
('tired', 0),
('trembling', 0),
('unexplainedpain', 0),
('upseteasily', 0),
('urinationfrequent', 3),
('urinecolordark', 0),
('urinefrequent', 0),
('vaginalinfectionsfrequent', 1),
('vaginalitch', 0),
('visionblurred', 0),
('vomit', 0),
('vomiting', 2),
('vomitingpersistent', 0),
('waterfear', 0),
('weight', 0),
('weightgain', 2),
('weightloss', 2),
('well', 0),
('wheezing', 0),
('woundhealslow', 0),
('yeastinfections', 2);
-- --------------------------------------------------------
--
-- Table structure for table `diseases`
--
CREATE TABLE IF NOT EXISTS `diseases` (
`disease_name` varchar(40) NOT NULL,
`doc_count` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `diseases`
--
INSERT INTO `diseases` (`disease_name`, `doc_count`) VALUES
('asthma', 3),
('cholera', 3),
('diabetes', 3),
('epilepsy', 2),
('flu', 2),
('jaundice', 3),
('malaria', 3),
('pnuemonia', 2),
('smallpox', 1),
('tubeculosis', 3),
('typhoid', 3);
-- --------------------------------------------------------
--
-- Table structure for table `epilepsy`
--
CREATE TABLE IF NOT EXISTS `epilepsy` (
`SYMPTOM` varchar(50) NOT NULL DEFAULT '',
`IN_DOCS` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `epilepsy`
--
INSERT INTO `epilepsy` (`SYMPTOM`, `IN_DOCS`) VALUES
('abdomendistendedextreme', 0),
('abdomenpain', 0),
('abdominalmusclestiff', 0),
('aggressionepisodes', 0),
('agitation', 0),
('anxiety', 0),
('appetiteexcessive', 0),
('appetitepoor', 0),
('armsmovementsuncontrollable', 1),
('armsstiff', 0),
('awarenessloss', 1),
('barkconstant', 0),
('behaviouraggressive', 0),
('behaviourerratic', 0),
('behaviourstrange', 1),
('bite', 0),
('bitepainsite', 0),
('biting', 0),
('blind', 0),
('bloodcoughtinged', 0),
('bloodnasaldischargeblood', 0),
('bloodpressurelow', 0),
('bodyaches', 0),
('bodyspasmspainful', 0),
('bodytemperaturelow', 0),
('breathbad', 0),
('breathingdifficult', 0),
('breathingincrease', 0),
('breathingrapid', 0),
('breathingshallow', 0),
('breathingtrouble', 0),
('breathingwheezingsevere', 0),
('breathshort', 0),
('browpain', 0),
('bruiseshealslow', 0),
('bruisesnotheal', 0),
('cheekspressurebehind', 0),
('chestfeeltight', 0),
('chestpain', 0),
('chestpressure', 0),
('chestspotspink', 0),
('chills', 0),
('cold', 0),
('coma', 0),
('concentrationlack', 0),
('confusion', 0),
('confusionmental', 0),
('confusiontemporary', 1),
('consciousnessloss', 2),
('constipation', 0),
('convulseviolent', 0),
('convulsions', 0),
('cough', 0),
('coughdry', 0),
('coughexercise', 0),
('coughgreen', 0),
('coughlaugh', 0),
('coughnight', 0),
('coughnon-stop', 0),
('coughrusty', 0),
('coughsticky', 0),
('coughthick', 0),
('cutshealslow', 0),
('cutsnotheal', 0),
('dehydrationmild', 0),
('dehydrationsevere', 0),
('delirium', 0),
('delusions', 0),
('dentalpain', 0),
('depression', 0),
('diarrhoeasevere', 0),
('diarrhoeasudden', 0),
('disorientation', 0),
('dizzinesspositionshift', 0),
('drowsinesssevere', 0),
('eatcravinganything', 0),
('energylack', 0),
('erectionsustained', 0),
('erectiontrouble', 0),
('excitementhigh', 0),
('exercisecoughwheezing', 0),
('exerciseweak', 0),
('exercisingtired', 0),
('exhalewheezing', 0),
('exhalewhistling', 0),
('exhaustion', 0),
('eyelidsmucousdry', 0),
('eyesclosedhalf', 0),
('eyespressurebehind', 0),
('eyeswhitesyellow', 0),
('facesweatpale', 0),
('facialcongestion', 0),
('facialpain', 0),
('fatigueextreme', 0),
('fatigueincreased', 0),
('fearno', 0),
('feetnumb', 0),
('fever', 0),
('fingernailsblue', 0),
('flu', 0),
('grinning', 0),
('groinitch', 0),
('grotesque', 0),
('grouchy', 0),
('growlingconstant', 0),
('guminfectionfrequent', 0),
('gumred', 0),
('gumspullaway', 0),
('gumswollen', 0),
('hairstandup', 0),
('hallucinations', 0),