Hi,
This is my code:
CREATE PROCEDURE test2 (@number int)
AS
select top @number field1 from table A
order by field1
I can't save the stored procedure. I want to passing one number into this procedure so that it can generate the result for me. The number is dynamic. Please kindly advice.
Thanks and Regards
lss