I would like to help me. This time with a summation of sum totals of other sums.
The error tells me that:
The
sum
function requires 1 argument.
Something about the code:
select
colum1 as Total,
colum2 as Co,
Sum (price) as [Total],
Sum(Amount) as TotalMes,
Sum (NatAmount) as PrecioNal,
Sum (Price,Amount,NatAmount) as TotalCo
From
Articulos,
Tickets
Where
fecha Between '2017-01-01' and '2017-01-31'
Group by
Column1,
Column2,
Price,
Amount,
NatAmount
order by
Total asc
Thank you.