Jump to content

Recommended Posts

Posted

Boas,

Preciso de incrementar um valor inteiro que está declarado num procedimento armazenado, mas não sei se o SQL Server 2000 me deixa fazer isto: ++Valor.

Exemplo:

CREATE PROCEDURE InserirCliente
@morada varchar(150),
@telefone int,
@email varchar(50)
AS
DECLARE @nCliente int

SELECT @nCliente = COUNT(*) FROM Cliente

        [b]++@nCliente[/b]

INSERT INTO Cliente (n, morada, telefone, email)
	VALUES (@nCliente, @morada, @telefone, @email)

RETURN @@error

Será que este incremento é possível?

Cumps

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.