Is there a way to add UNION ALL to the query?
My SQL statement is :
SELECT InvoiceId AS Id, InvoiceAmount AS TranAmount, InvoiceDate AS TranDate FROM Invoice
UNION ALL
SELECT PaymentId AS Id, PaymentAmount AS TranAmount, PayDate AS TranDate FROM Payment
How can I do this?
I am using Version 2.0