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 |
297 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
You can find here https://ecode10.academy/curso/30/database-course-step-by-step too
Monday, July 24, 2023
Mauricio Junior