You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
182 B

drop proc ProductComments_Select
create proc ProductComments_Select
@ProdID int,
@StartPage int,
@EndPage int
as
begin
declare @TempTable table(ID int identity(1,1),PCID int)