質問編集履歴

1

MySQLのバージョン記入,データを実行可能なものに変更

2020/05/27 03:33

投稿

u-tyan
u-tyan

スコア15

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,10 @@
1
+ MySQL初学者です。
2
+
3
+
4
+
1
- 有料会員のユーザーについて、ユーザーごとに、4月の日ごとのログイン回数・4月の日ごとのログイン時のプレイ回数を出力したいのですが、、
5
+ 有料会員のユーザーについて、ユーザーごとに、4月の日ごとのログイン回数・4月の日ごとのログイン時のプレイ回数
6
+
7
+ を出力したいのですが、、
2
8
 
3
9
 
4
10
 
@@ -30,7 +36,7 @@
30
36
 
31
37
  create table LoginT(lid int primary key auto_increment,uid int,ldate timestamp,play Int);
32
38
 
33
- insert into LoginT(uid,ldate) values
39
+ insert into LoginT(uid,ldate,play) values
34
40
 
35
41
  (1,'2011-04-06 15:55:00',1),
36
42
 
@@ -90,6 +96,8 @@
90
96
 
91
97
 
92
98
 
99
+ MySQLのバージョンは8.0.19です。
100
+
93
101
 
94
102
 
95
103
  わかる方いらっしゃいましたら、回答お願いいたします。