### Concatenar(enlazar) maxicomercio Daniel(100%): ~~~ SELECT concat(producto.descripcion, ' ',if(isnull(producto.notas), ' ', producto.Notas), ' ', if(isnull(dventa.notas), ' ', dventa.Notas)) as Descripcionnotas, sum(DVenta.Cantidad) as Cantidad, DVenta.Unidad AS Unidad, DVenta.Precio AS Precio FROM (Producto INNER JOIN DVenta ON Producto.Sys_PK = DVenta.IProducto) WHERE DVenta.FK_Venta_Detalle=@pPrimaryKey group by Producto.Descripcion, DVenta.Unidad, DVenta.Precio ~~~