is it possible to make a running field total in sqlserver 2000 views
and if so how?
can any body answer me
thanks
and if so how?
can any body answer me
thanks
SELECT Sale, (SELECT SUM(Sale) FROM tblSale a WHERE id <= tblSale.id) AS Balance FROM tblSale
Comment