回答編集履歴
1
追記
test
CHANGED
@@ -15,3 +15,23 @@
|
|
15
15
|
and 商品.消費期限 >= 廃棄.廃棄日
|
16
16
|
|
17
17
|
```
|
18
|
+
|
19
|
+
同等の結果でクエリーのデザインビューでも可能な表現としてはexistsを使用した相関副問合せです。
|
20
|
+
|
21
|
+
```SQL
|
22
|
+
|
23
|
+
select 商品.*
|
24
|
+
|
25
|
+
from 商品
|
26
|
+
|
27
|
+
where exists(
|
28
|
+
|
29
|
+
select 1 from 廃棄
|
30
|
+
|
31
|
+
where 店舗コード = 商品.店舗コード
|
32
|
+
|
33
|
+
and 廃棄日 <= 商品.消費期限
|
34
|
+
|
35
|
+
)
|
36
|
+
|
37
|
+
```
|