我在SQL Server 2008中有两个表:
Customer
:customerid, customername
(仅包含一行)
Product
:productid, productname, category, price
(包含多行)
我希望在单个存储过程中使用2个select语句从customername
表和customer
从productname,category,price
表中获取product
。
怎么做?
答案 0 :(得分:1)
使用临时表(#temp)概念可以做到这一点。最好的方法是在两个表和写连接查询之间建立关系。