質問編集履歴
2
質問文追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -97,3 +97,69 @@
|
|
97
97
|
どのようにSQLを組めばよいでしょうか。
|
98
98
|
|
99
99
|
お力添えよろしくお願いします。
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
**テーブル定義書**
|
104
|
+
|
105
|
+
![![イメージ説明](76fbefc0bf170e7da44b447e06cdec24.png)
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
**回答者様用SQL**
|
110
|
+
|
111
|
+
こちらのSQLを流していただくと私の環境と同じ環境が出来上がると思います
|
112
|
+
|
113
|
+
```SQL
|
114
|
+
|
115
|
+
/* DB作成*/
|
116
|
+
|
117
|
+
create database test
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
/* ユーザー作成*/
|
122
|
+
|
123
|
+
grant all on blog_cakephp.* to test@localhost identified by 'test';
|
124
|
+
|
125
|
+
use test
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
/* テーブル作成 */
|
130
|
+
|
131
|
+
create emp_data (
|
132
|
+
|
133
|
+
id int unsigned auto_increment primary key,
|
134
|
+
|
135
|
+
status char(1),
|
136
|
+
|
137
|
+
destination varchar(255),
|
138
|
+
|
139
|
+
created datetime default null,
|
140
|
+
|
141
|
+
);
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
insert into posts (status, destination, created) values
|
146
|
+
|
147
|
+
('A', 'テスト公園', now()),
|
148
|
+
|
149
|
+
('B', 'テスト公園', now()),
|
150
|
+
|
151
|
+
('C', 'テスト公園', now()),
|
152
|
+
|
153
|
+
('A', 'テスト病院', now()),
|
154
|
+
|
155
|
+
('B', 'テスト病院', now()),
|
156
|
+
|
157
|
+
('C', 'テスト病院', now()),
|
158
|
+
|
159
|
+
('A', 'テスト歯医者', now()),
|
160
|
+
|
161
|
+
('B', 'テスト歯医者', now()),
|
162
|
+
|
163
|
+
('C', 'テスト歯医者', now());
|
164
|
+
|
165
|
+
```
|
1
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
**使用DBサーバ MySQL**
|
2
|
+
|
3
|
+
**バージョン 5.6**
|
2
4
|
|
3
5
|
|
4
6
|
|