Answered step by step
Verified Expert Solution
Question
1 Approved Answer
How would you modify the solution to exercise #4 to filter for invoices dated from Decemvber 1,2015 to February 29, 2016 ? Exercise #4 -
How would you modify the solution to exercise #4 to filter for invoices dated from Decemvber 1,2015 to February 29, 2016 ?
Exercise #4 - SELECT [dbo].[GLAccounts].AccountDescription, COUNT(*) LineItemCount, SUM([dbo].[InvoiceLineItems].InvoiceLineItemAmount) AS LineItemSum FROM [dbo].[GLAccounts] JOIN [dbo].[InvoiceLineItems] ON [dbo].[GLAccounts].AccountNo = [dbo].[InvoiceLineItems].AccountNo GROUP BY [dbo].[GLAccounts].AccountDescription HAVING COUNT(*) > 1 ORDER BY LineItemCount DESC;
Please Advise.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started