表a>
id_a
表b
areas:
id_b
id_b2
filed_b
filed_b2
Table c
fields:
id_c
filed_c
table a
data:
id_a
----
1
2
table b
data:
id_b id_b2 filed_b
---- ----- -------
1 1 1
2 2 100
table c
data:
id_c filed_c
---- ---------
1 adfa11111
2 dfdf22222
http://www.ohchr.org。
a join b on id_a=id_b
b join c on id_b2=id_c
The goal is to get all table a
data and associated filed_c
data.
Criterion is: if filed_b=100, list filed_c. otherwise leave filed_c null.
问题:如果在右桌上没有标准,则使用左边。 但是,一旦有了正确的表格标准,右桌上就没有记录。