I'm trying to get two different queries together in the same table:
declare @semana nvarchar(10)
set @semana=(select datepart(week,getdate()))
select SUM(CANTIDAD) AS Qty1 from tbl_Entrada where dia=('Monday') and semana=@semana --Primer resultado
select sum(cantidad) as Qty2 from tbl_Entrada where dia=('Tuesday') and semana=@semana --Segundo resultado
In this way two results are thrown separately, however I want these results (Qty1, Qty2) appear in one as if it were the same sentence.