質問編集履歴
1
みほんのテーブル2つを生成するSQLを追記。コードの言語がSQLと記載。
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,7 +76,7 @@
|
|
76
76
|
|
77
77
|
下記のようなSQLを書いて解決したいです。
|
78
78
|
|
79
|
-
```
|
79
|
+
```sql
|
80
80
|
|
81
81
|
update tableB
|
82
82
|
|
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
|
91
|
-
```
|
91
|
+
```sql
|
92
92
|
|
93
93
|
select * from tableA join tableB on tableA.ID = tableB.A_ID where tableB.is_reliable=0;
|
94
94
|
|
@@ -99,3 +99,41 @@
|
|
99
99
|
|
100
100
|
|
101
101
|
アドバイスいただけたらと思います!
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
以下、みほんのテーブル2つを生成するSQLです。
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
```sql
|
110
|
+
|
111
|
+
drop table if exists tableA;
|
112
|
+
|
113
|
+
create table tableA(ID, answer);
|
114
|
+
|
115
|
+
insert into tableA values(1, "A");
|
116
|
+
|
117
|
+
insert into tableA values(2, "B");
|
118
|
+
|
119
|
+
insert into tableA values(3, "C");
|
120
|
+
|
121
|
+
insert into tableA values(4, "D");
|
122
|
+
|
123
|
+
insert into tableA values(5, "E");
|
124
|
+
|
125
|
+
drop table if exists tableB;
|
126
|
+
|
127
|
+
create table tableB(ID, A_ID, answer, is_reliable);
|
128
|
+
|
129
|
+
insert into tableB values(1, 1, "ABC", 1);
|
130
|
+
|
131
|
+
insert into tableB values(2, 1, "BCD", 0);
|
132
|
+
|
133
|
+
insert into tableB values(3, 2, "CDE", 1);
|
134
|
+
|
135
|
+
insert into tableB values(4, 3, "DEF", 1);
|
136
|
+
|
137
|
+
insert into tableB values(5, 4, "EFG", 0);
|
138
|
+
|
139
|
+
```
|