USE [cms]
GO
/****** Object: StoredProcedure [dbo].[SpGetRelatedProducts] Script Date: 10/10/2012 14:35:39 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[SpGetRelatedProducts](@pid int)
AS
DECLARE @subcate int;
select subcate_id as subcate from product where [email protected]
SELECT *
FROM product
where [email protected]
exec SpGetRelatedProducts 2
以上sql查詢不能按要求正常工作。sql查詢不能正常工作
我希望只有那些產品具有subcatid =(subcatid給定pid)的產品詳細信息。
有2個問題
只有1個輸出應該出現,而不是2
第二輸出工作不正常
存儲過程是否與這個問題有關? – Jodrell
你需要的是'SELECT fieldName INTO @variableName ...' –
@GermannArlington,'int'不是表變量。 – Jodrell