Created
March 21, 2019 14:36
-
-
Save yhau1989/a44993e1520aa09ff7617ba75f1ace09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare @cod as INT | |
DECLARE @grupoArticulo AS NVARCHAR(MAX) | |
DECLARE @totalPack AS INT | |
DECLARE @SumUnidadesPak INT | |
DECLARE @SumtotalUnidades INT | |
declare CURSORITO cursor FOR (select id_orden_pedido_detalle,GRUPO_ARTICULO, totalPack FROM #temp_table_name) | |
open CURSORITO | |
fetch next from CURSORITO into @cod, @grupoArticulo, @totalPack | |
while @@fetch_status = 0 | |
begin | |
fetch next from CURSORITO | |
into @cod, @grupoArticulo, @totalPack | |
END | |
close CURSORITO | |
deallocate CURSORITO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment