Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Cambiar area a todos los productos de un subgrupo determinado
- Cambia el área de impresion de todos los productos que pertenecen a determinado sub-grupo
- DECLARE @variable INT, @variable2 INT
- SELECT @variable=idsubgrupo FROM subgrupos WHERE descripcion = '**SUBGRUPO**'; /* DEVUELVE ID DEL SUB GRUPO Y LO ALMACENA EN UNA VARIABLE */
- /*select idproducto from subgruposproductos where idsubgrupo= @variable;*/ /* DEVUELVE LOS PRODUCTOS DENTRO DE ESE SUBGRUPO*/
- SELECT @variable2=idarea FROM areas WHERE nombre = '**AREAIMPRE**'; /* DEVUELVE ID DE UN AREA DE IMPRESION Y LO ALMACENA EN UNA VARIABLE */
- /* CAMBIA EL AREA DE IMPRESION ACTUAL POR LA QUE EL USUARIO DESEE (EN ESTE CASO, LA QUE BUSCO ANTERIORMENTE)*/
- UPDATE productosdetalle SET idarea=@variable2 WHERE idproducto IN (SELECT idproducto FROM subgruposproductos WHERE idsubgrupo= @variable);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement