-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurant.sql
More file actions
60 lines (50 loc) · 2.07 KB
/
restaurant.sql
File metadata and controls
60 lines (50 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
-- phpMyAdmin SQL Dump
-- version 3.5.2.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 30, 2014 at 04:05 AM
-- Server version: 5.5.27
-- PHP Version: 5.4.7
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: `bon_appetit`
--
-- --------------------------------------------------------
--
-- Table structure for table `restaurant`
--
CREATE TABLE IF NOT EXISTS `restaurant` (
`restaurant_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`address` varchar(255) NOT NULL,
`district` varchar(255) NOT NULL,
`rating` decimal(11,2) NOT NULL,
`user_count` int(32) NOT NULL,
`imglink` varchar(255) NOT NULL,
PRIMARY KEY (`restaurant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
--
-- Dumping data for table `restaurant`
--
INSERT INTO `restaurant` (`restaurant_id`, `name`, `address`, `district`, `rating`, `user_count`, `imglink`) VALUES
(1, 'Capricorn', '19th floor, Boshundhara City', 'Dhaka', 2.00, 1, ''),
(2, 'korai Gost', 'Jhigatola, Dhanmondi', 'Dhaka', 0.00, 0, ''),
(3, 'China Kitchen', 'Hatir Pool', 'Dhaka', 0.00, 0, ''),
(4, 'Star', 'Thatari Bazar', 'Dhaka', 0.00, 0, ''),
(5, 'Apple Inn', 'Jhigatola, Dhanmondi', 'Dhaka', 0.00, 0, ''),
(6, 'Chillis', 'Dhanmondi 32', 'Dhaka', 0.00, 0, ''),
(7, 'Safa Wung', 'Kadirganj', 'Rajshahi', 0.00, 0, ''),
(8, 'Master chef', 'Alokar Mor', 'Rajshahi', 0.00, 0, ''),
(9, 'Nanking', 'CNB Mor', 'Rajshahi', 3.00, 1, ''),
(10, 'Aristrocrat', 'Shaheb Bazar', 'Rajshahi', 1.00, 1, ''),
(11, 'Chillis', 'Shaheb Bazar', 'Rajshahi', 0.00, 0, ''),
(12, 'Star Kabab ', '24/7, Jigatola, Dhanmondi', 'Dhaka', 0.00, 0, 'images/smblk31280_2.jpg');
/*!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 */;