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.
ArtsAndCrafts/DataSql/ProductSearchShow_Select.sql

16 lines
223 B

drop proc ProductSearchShow_Select
create proc ProductSearchShow_Select
@StartPage int,
@EndPage int,
@ProductName nvarchar(50)
as
begin
declare @TempTable table(ID int identity(1,1),PID int)
set rowcount @EndPage