Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Pegar ID que acabo de cadastrar


Gafanhoto

Question

Seguinte, meu banco de dados passou por uma normalização, e estou refazendo minhas querys de insert. Quero saber a melhor forma de fazer a query para inserir um cliente.

Vou passar a estrutura de 2 tabelas.

TABELA cadastroGeral

idCadastroGeral

nome

contato

idDocumentos

TABELA cadastroGeral_documentos

idCGDocumentos

idCadastroGeral

CNPJ

CPF

IE

IM

A questão é a seguinte. Após dar o primeiro insert into

INSERT INTO cadastroGeral (nome, contato) value (@nome,@contato)

Eu preciso pegar o idCadastroGeral que acaba de gerar no insert para cadastrar na tabela cadastroGeral_documentos.

A melhor maneira de fazer isso é dando um SELECT no último registro ou tem alguma maneira melhor e mais rápida?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

olha um exemplo ae

CREATE PROCEDURE [PRC_CLIENTE_INSERE]
@nome as varchar(50),
@contato as varchar(50),
@int_Identity INT OUTPUT
AS

INSERT INTO cadastroGeral (nome, contato) values (@nome,@contato)

SET @int_Identity = (SELECT @@IDENTITY)

RETURN

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...