我要开始使用mysql 5.1社区版。
首先我有......
ID Product_Code Product_Name Product_Details ===================================================================== 1 000001 Raw Material 1 000001- Raw Material 1 2 000002 Raw Material 2 000002- Raw Material 2 3 000003 Raw Material 3 000003- Raw Material 3 4 000004 Raw Material 4 000004- Raw Material 4
其中ID
字段为PK
Doc_no Doc_date Doc_type Item_code1 Item_qty1 Item_price1 Item_code2 Item_qty2 Item_price2 ========================================================================================================================= 000001 01-01-2013 BC. 2.3 1 200 $ 150 3 500 $800 000002 02-01-2013 BC. 2.7 2 1500 $ 800 4 6000 $2500 000003 03-01-2013 BC. 3.0 3 5000 $1500 1 12000 $8500 000004 04-01-2013 BC. 4.0 4 12000 $5000 2 750 $3000
其中Doc_no
字段为PK
我想得到的就是这样......
Doc_no Doc_date Doc_type Item_details1 Item_qty1 Item_price1 Item_details2 Item_qty2 Item_price2 ======================================================================================================================================================== 000001 01-01-2013 BC. 2.3 000001- Raw Material 1 200 $ 150 000003- Raw Material 3 500 $800 000002 02-01-2013 BC. 2.7 000002- Raw Material 2 1500 $ 800 000004- Raw Material 4 6000 $2500 000003 03-01-2013 BC. 3.0 000003- Raw Material 3 5000 $1500 000001- Raw Material 1 12000 $8500 000004 04-01-2013 BC. 4.0 000004- Raw Material 4 12000 $5000 000002- Raw Material 2 750 $3000
任何有关如何执行此操作的帮助都会有所帮助,谢谢。
答案 0 :(得分:1)
试试这个:
SELECT md.Doc_no, md.Doc_date, md.Doc_type,
mp1.Product_Details Item_details1, md.Item_qty1, md.Item_price1,
mp2.Product_Details Item_details2, md.Item_qty2, md.Item_price2
FROM master_document md
INNER JOIN master_product_table mp1 ON md.Item_code1 = mp1.ID
INNER JOIN master_product_table mp2 ON md.Item_code2 = mp2.ID ;
答案 1 :(得分:1)
第一次尝试 SQL FIDDLE
大约 30分钟
尝试以下SQL Fiddle
SELECT md.Doc_no, md.Doc_date, md.Doc_type,
pd1.Product_Details Item_details1, md.Item_qty1, md.Item_price1,
pd2.Product_Details Item_details2, md.Item_qty2, md.Item_price2
FROM master_document md
INNER JOIN master_product_table pd1 ON md.Item_code1 = pd1.ID
INNER JOIN master_product_table pd2 ON md.Item_code2 = pd2.ID
order by md.Doc_no
答案 2 :(得分:0)
这是一个关于SQL的基本问题。现在给你一个直接的解决方案肯定不会帮助你。
尝试获取一个较小的示例并开始学习如何使用'SELECT x FROM y WHERE x = w',以及 'SELECT x as z FROM y'(这将列x重命名为z)
然后,如果您还有其他问题,请在此处添加。
玩得开心;)