Posts by Higor Rezende • 1 point
2 posts
-
0
votes1
answer24
viewsA: Update with view parameters
Follow a solution option: One way to do what you need is by using the following execution: INSERT INTO nome_da_tabela (nome_da_coluna) SELECT nome_do_campo_da_view FROM nome_da_view; This way you…
viewanswered Higor Rezende 1 -
0
votes1
answer385
viewsA: Take data from a column in a view and insert it into a table
I will illustrate based only on the information you put in the question. Come on: To do what you want, if no information is missing, it is theoretically simple. Here is an example of how to do:…