Here is My query :
SELECT Name,
Quantity,
Price,
(Quantity*Price)[Total Price]
FROM Menu,
Items_per_Table,
[735294]
WHERE Menu.Item_id = Items_per_Table.Item_id
AND [735294].OrderNo = Items_per_Table.OrderNo
AND Bill_Generated = 'True'
It returns :
Name Quantity Price Total Price
Aerated Drinks 1 30.00 30.00
Fresh Lime Soda/Water 3 60.00 180.00
Here I want the sum of total prices like this : 30+180 = 210 in another column. How can I perform that ?
It Should Return :
Name Quantity Price Total Price All Over Price
Aerated Drinks 1 30.00 30.00 30
Fresh Lime Soda/Water 3 60.00 180.00 210