Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Grouping total sales by payment type

    Sergiy is correct about the poor design but :

    SELECT 'Cash' AS PaymentType, SUM(Cash) AS [Total] FROM Ledger WHERE mydate BETWEEN...  

    UNION ALL

    SELECT 'Cheque', SUM(Cheque) FROM Ledger WHERE mydate...

  • RE: The Bowling Challenge

    Andy,

    Ground to a halt? Perhaps the source could be published somewhere for comments... I'm sure it's not a major factor - but at least the one's which simply don't work...

Viewing 2 posts - 1 through 2 (of 2 total)