SELECT nom AS Nom, id_type_produit, id_format
FROM dbo.Produits
これは私にidのみを表示し id_type
、id_Format
それらの値を表示する必要があります( id_format = 1 = 750 ml のように、他の2つのテーブルで)および type = 1 = wine ..
しかし、選択を行うと、1と2しか表示されず、750 mlとワインは表示されません
SELECT nom AS Nom, id_type_produit, id_format
FROM dbo.Produits
これは私にidのみを表示し id_type
、id_Format
それらの値を表示する必要があります( id_format = 1 = 750 ml のように、他の2つのテーブルで)および type = 1 = wine ..
しかし、選択を行うと、1と2しか表示されず、750 mlとワインは表示されません
SELECT nom AS Nom, Produits.id_type_produit, type_produits.value, Produits.id_format, formats.value
FROM dbo.Produits
INNER JOIN dbo.type_produits ON Produits.id_type_produit = type_produits.id_type_produit
INNER JOIN dbo.dbo_formats ON Produits.id_format = formats.id_format