Posts by Patrick • 1 point
1 post
-
0
votes1
answer273
viewsQ: Create temporary table from cursor data
I created a cursor that shows the date of sale and the total sold value of the day. Follow the code: declare cursorteste cursor local forward_only for select data_venda, sum(valor_unitario) as…