I need to make multiple inserts that will depend on an existing result in a table like this:
--CRIA TABELA #CONTATO
CREATE TABLE #CONTATO(
NOME VARCHAR(100) NULL,
TELEFONE VARCHAR(50) NULL
);
--INSERE 2 LINHAS NELA
INSERT INTO #CONTATO VALUES('JOAO','11-1111-1111');
INSERT INTO #CONTATO VALUES('MARIA','22-2222-2222');
Imagine who in the above example I need my result to be something like:
PRINT 'MEU NOME É '@NOME+' E MEU TELEFONE É '+@TELEFONE;
Someone could show me what the dynamic SQL would be like, because I've already seen examples on the internet that use sp_executeSQL
but I could not figure out how to handle it when there is this case ... the feedback I'd like to have would be something like
--MEU NOME É JOAO E MEU TELEFONE É 11-1111-1111
--MEU NOME É MARIA E MEU TELEFONE É 22-2222-2222