在SQL Server中从多个表中选择多个表

时间:2015-01-23 13:48:02

标签: view sql-server-2012

我在SQL Server 2012中有两个表,它们之间建立了多对多(n到m)的关系:

table1和table2

enter image description here enter image description here

我需要来自 table2 的查看或查询(或SP),以显示以下结果:

enter image description here

是否可以编写此查询?

1 个答案:

答案 0 :(得分:0)

SELECT a.RowID, b.Table1_Id, a.Price
FROM table2 a
INNER JOIN table1 b
ON a.Table1_Id=b.Table1_ID