M
Mark
Hi
I have a stored proc that inserts values into a db, now i
want to give that stored proc a row Id for it to update.
cant get it working though
heres the code
<code>
ALTER PROCEDURE dbo.AddPay
(
@Pay VarChar(50)
)
AS
Insert into TestFile
(
Pay
)Values (
@Pay
where Id = @Id)
</code>
any ideas?
thanks
Mark
I have a stored proc that inserts values into a db, now i
want to give that stored proc a row Id for it to update.
cant get it working though
heres the code
<code>
ALTER PROCEDURE dbo.AddPay
(
@Pay VarChar(50)
)
AS
Insert into TestFile
(
Pay
)Values (
@Pay
where Id = @Id)
</code>
any ideas?
thanks
Mark