-2

我在 SQL Server 2008 中有两个表:

  • Customer:(customerid, customername仅包含一行)

  • Product:(productid, productname, category, price包含多行)

我想在单个存储过程中使用 2 个选择语句customernamecustomer表和表中productname,category,price获取。product

怎么做?

4

1 回答 1

1

使用临时表 (#temp) 概念,您可以做到这一点。更好的方法是在这两个表之间创建关系并编写连接查询。

于 2013-03-18T10:26:20.283 回答