Skip to content

Commit

Permalink
upload DB file
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-saqib committed Sep 26, 2021
1 parent f568ca6 commit e596ba9
Showing 1 changed file with 153 additions and 0 deletions.
153 changes: 153 additions & 0 deletions chatbot.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Sep 26, 2021 at 05:36 PM
-- Server version: 10.4.8-MariaDB
-- PHP Version: 7.3.28

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `chatbot`
--

-- --------------------------------------------------------

--
-- 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
(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'),
(18, 'i want to know you', 'ask 3'),
(19, 'ok', 'okay '),
(20, 'hi', 'hi, how are you'),
(21, 'hi', 'hi, how are you'),
(22, 'hi', 'hi helloo..'),
(23, 'how are you', 'i am fine');

-- --------------------------------------------------------

--
-- 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]'),
(8, 'dfgsdfgdsfg', '[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=24;

--
-- AUTO_INCREMENT for table `queries`
--
ALTER TABLE `queries`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 comments on commit e596ba9

Please sign in to comment.