-
Notifications
You must be signed in to change notification settings - Fork 2
/
mmt480_main.sql
153 lines (125 loc) · 4.34 KB
/
mmt480_main.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
-- phpMyAdmin SQL Dump
-- version 4.9.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 03, 2021 at 02:04 PM
-- Server version: 10.4.8-MariaDB
-- PHP Version: 7.3.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `mmt480_main`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE `admin` (
`Id` int(11) NOT NULL,
`Username` text NOT NULL,
`Email` text NOT NULL,
`Password` text NOT NULL,
`Type` text NOT NULL,
`Date` date NOT NULL,
`Time` time NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`Id`, `Username`, `Email`, `Password`, `Type`, `Date`, `Time`) VALUES
(1, 'kanwar', '[email protected]', 'kanwar', 'Admin', '2020-06-04', '27:13:02');
-- --------------------------------------------------------
--
-- Table structure for table `chatbot_hints`
--
CREATE TABLE `chatbot_hints` (
`id` int(11) NOT NULL,
`questions` varchar(100) NOT NULL,
`reply` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `chatbot_hints`
--
INSERT INTO `chatbot_hints` (`id`, `questions`, `reply`) VALUES
(2, 'what is your kanwar?', 'my name is kanwar'),
(4, 'wahts your qualification?', 'Software engineer'),
(6, 'how i can help you?', 'i need and office to run my startupt where i can develp softwares and manage my teams'),
(7, 'what is valye of 2/2 ?', '1'),
(8, 'What is multidrug-resistant tuberculosis and how do we control it?', 'The bacteria that cause tuberculosis (TB) can develop resistance to the antimicrobial drugs used to '),
(9, ' What is the process of Data Analysis?', 'Data has been the buzzword for ages now. Either the data being generated from large-scale enterprise'),
(10, 'Why is Data Analytics important?', 'Data Analytics has a key role in improving your business.'),
(11, 'What is Data Analytics for Beginners?', 'Data Analytics refers to the techniques used to analyze data to enhance productivity and business ga'),
(12, 'What are the tools used in Data Analytics?', 'With the increasing demand for Data Analytics in the market, many tools have emerged with various fu'),
(13, 'How to Become a Data Analyst?', 'Data analysts translate numbers into plain English. A Data Analyst delivers value to their companie'),
(16, 'i want to know you', 'ask'),
(17, 'i want to know you', 'ask 2'),
(18, 'i want to know you', 'ask 3'),
(19, 'ok', 'okay '),
(20, 'hi', 'hi, how are you'),
(21, 'hi', 'hi, how are you');
-- --------------------------------------------------------
--
-- Table structure for table `queries`
--
CREATE TABLE `queries` (
`id` int(11) NOT NULL,
`questions` text NOT NULL,
`email` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `queries`
--
INSERT INTO `queries` (`id`, `questions`, `email`) VALUES
(2, 'i want to know you', '[email protected]'),
(3, 'i want to ghfdghknow you', '[email protected]'),
(4, 'i fdghf to ghfdghknow you', '[email protected]'),
(5, 'gfdsg', '[email protected]'),
(7, 'dfgdf', '[email protected]');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`Id`),
ADD UNIQUE KEY `Email` (`Email`(44));
--
-- Indexes for table `chatbot_hints`
--
ALTER TABLE `chatbot_hints`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `queries`
--
ALTER TABLE `queries`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
--
-- AUTO_INCREMENT for table `chatbot_hints`
--
ALTER TABLE `chatbot_hints`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;
--
-- AUTO_INCREMENT for table `queries`
--
ALTER TABLE `queries`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;