質問編集履歴

4

syuusei

2018/11/12 10:19

投稿

annderber
annderber

スコア98

test CHANGED
File without changes
test CHANGED
@@ -54,7 +54,7 @@
54
54
 
55
55
  ```sql
56
56
 
57
- SELECT * FROM `document` as `d` left join `view_continue` as `vc` on `d`.`id` = `vc`.`document_id` where `update_date`= '2018-11-12' || `user_id` = '002' GROUP by `d`.`id`;
57
+ SELECT `d`.`id`, `d`.`title`, `d`.`report`, `d`.`update_date`, `vc`.`user_id` FROM `document` as `d` left join `view_continue` as `vc` on `d`.`id` = `vc`.`document_id` where `update_date`= '2018-11-12' || `user_id` = '002' GROUP by `d`.`id`;
58
58
 
59
59
  ```
60
60
 

3

2018/11/12 10:19

投稿

annderber
annderber

スコア98

test CHANGED
File without changes
test CHANGED
@@ -74,7 +74,9 @@
74
74
 
75
75
  これを検索したuser_idが入るようになる処理を教えていただきたいです。
76
76
 
77
- documentテーブルのレコードは1万件程度の想定です
77
+ documentテーブルのレコードは1万件程度の想定です
78
+
79
+ 基本的にSQLの構文についての質問ですが、テーブル設計に関してのご指摘でも大丈夫です。
78
80
 
79
81
 
80
82
 

2

2018/11/12 09:54

投稿

annderber
annderber

スコア98

test CHANGED
File without changes
test CHANGED
@@ -74,6 +74,8 @@
74
74
 
75
75
  これを検索したuser_idが入るようになる処理を教えていただきたいです。
76
76
 
77
+ documentテーブルのレコードは1万件程度の想定です
78
+
77
79
 
78
80
 
79
81
  よろしくお願いいたします。

1

2018/11/12 09:39

投稿

annderber
annderber

スコア98

test CHANGED
File without changes
test CHANGED
@@ -68,6 +68,8 @@
68
68
 
69
69
  |1|test|text|2018-11-12|001|
70
70
 
71
+
72
+
71
73
  となり、他ユーザーのidが紛れ込んでしまいます。
72
74
 
73
75
  これを検索したuser_idが入るようになる処理を教えていただきたいです。