我是 SQL 和关系 DBMS 的新手。如果它们满足 3 个给定属性,我想从关系数据库中检索记录。
例如,如果有一个包含有关实体信息的表:
table_solid : |s_id|s_name|description|
table_width : |w_id|w_name|
table_height: |h_id|h_name|
table_length: |l_id|l_name|
其中 *_id 都是主键。
我还有 3 个表用于将这些表与外键相关联。
table_s_h: |s_id|h_id|
table_s_w: |s_id|w_id|
table_s_l: |s_id|l_id|
请您解释一下我如何加入这些。
提前致谢。
--------- table_length
table_SOLID ----
----------- table_width
------------table_height
table_length 包含 solid 可以采用的有效长度(与其他表类似)。