M
martinharvey
This is probably a very simple question but i would appreciate some help with
the correct syntax for and update stored procedure
I have created a user form that allows the user to update the name and
address fields in a datatable called customers based on the input value
customer ID = ( datatable/Customers)customerID
I have got this far and then got lost:
Create SP_UpdateCustomer
(@customerID, @name, @address)
As
Update customers ( name, address)
Where customerID = @customerID
GO
Could anyone tell me what the correct sntax should be.
many thanks
Martin
the correct syntax for and update stored procedure
I have created a user form that allows the user to update the name and
address fields in a datatable called customers based on the input value
customer ID = ( datatable/Customers)customerID
I have got this far and then got lost:
Create SP_UpdateCustomer
(@customerID, @name, @address)
As
Update customers ( name, address)
Where customerID = @customerID
GO
Could anyone tell me what the correct sntax should be.
many thanks
Martin