Back
Theme:

Insert Select using Stored Procedure result


How can I do an insert select using the stored procedure result?

Date: Monday, July 24, 2023
2 answers | 144 view(s)
by Mauricio Junior

Answers

I have an example that you can use in a simple way and fast.

INSERT INTO
	Table
		(field1, field2, field3)
	exec Procedure_Name @value_parameter

I have a database course in ecode10.academy that can help you step by step.

Monday, July 24, 2023

Mauricio Junior


Monday, July 24, 2023

Mauricio Junior


Curso de HTML na prática