-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFacilities.sql
More file actions
56 lines (46 loc) · 1.76 KB
/
Facilities.sql
File metadata and controls
56 lines (46 loc) · 1.76 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
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- ホスト: localhost
-- 生成日時: 2020 年 1 月 13 日 23:46
-- サーバのバージョン: 5.5.43-0ubuntu0.14.04.1
-- PHP のバージョン: 5.5.9-1ubuntu4.11
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 */;
--
-- データベース: `country_club`
--
-- --------------------------------------------------------
--
-- テーブルの構造 `Facilities`
--
CREATE TABLE IF NOT EXISTS `Facilities` (
`facid` int(1) NOT NULL DEFAULT '0',
`name` varchar(15) DEFAULT NULL,
`membercost` decimal(2,1) DEFAULT NULL,
`guestcost` decimal(3,1) DEFAULT NULL,
`initialoutlay` int(5) DEFAULT NULL,
`monthlymaintenance` int(4) DEFAULT NULL,
PRIMARY KEY (`facid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- テーブルのデータのダンプ `Facilities`
--
INSERT INTO `Facilities` (`facid`, `name`, `membercost`, `guestcost`, `initialoutlay`, `monthlymaintenance`) VALUES
(0, 'Tennis Court 1', 5.0, 25.0, 10000, 200),
(1, 'Tennis Court 2', 5.0, 25.0, 8000, 200),
(2, 'Badminton Court', 0.0, 15.5, 4000, 50),
(3, 'Table Tennis', 0.0, 5.0, 320, 10),
(4, 'Massage Room 1', 9.9, 80.0, 4000, 3000),
(5, 'Massage Room 2', 9.9, 80.0, 4000, 3000),
(6, 'Squash Court', 3.5, 17.5, 5000, 80),
(7, 'Snooker Table', 0.0, 5.0, 450, 15),
(8, 'Pool Table', 0.0, 5.0, 400, 15);
/*!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 */;