You are on page 1of 1

ALTER procedure [dbo].

[updateCliente](@codigo as int,@nombre as varchar(50),@dir


as varchar(50),@tel as varchar(50))
as
begin
update Cliente set cliNom=@nombre, cliDir=@dir, cliTel=@tel where cliCod =@cod
igo
end

You might also like