回答編集履歴
2
再訂正
test
CHANGED
@@ -28,9 +28,9 @@
|
|
28
28
|
|
29
29
|
where B.type='B'
|
30
30
|
|
31
|
+
and B.deleted_at is null
|
32
|
+
|
31
33
|
and B.user_id = A.user_id
|
32
|
-
|
33
|
-
and B.deleted_at is null
|
34
34
|
|
35
35
|
and B.updated_at>A.updated_at
|
36
36
|
|
1
訂正
test
CHANGED
@@ -26,7 +26,9 @@
|
|
26
26
|
|
27
27
|
from articles as B
|
28
28
|
|
29
|
+
where B.type='B'
|
30
|
+
|
29
|
-
|
31
|
+
and B.user_id = A.user_id
|
30
32
|
|
31
33
|
and B.deleted_at is null
|
32
34
|
|