Hi All,
I am trying to build a report where show all the numbers of orders completed and orders which are completed on time. However, I have a hard time to figure out how to build the where clause since I want to get all the completed orders and at the same time, I also want to count the completed orders on time. Can anyone help me with this query?
This is my query right now:
SELECT COUNT(o.OrderID)
FROM Order o
WHERE MONTH(o.InvoiceDT) = @.Month
TIA
hi,
first of all is there any field like order_to_be_finished_by (date) & finished_on(data) fields or not in your table.
Select Count(OrderID) As OrdersCompletedOnTime from table
where convert(varchar, to_be_Finished_Date, 103) = convert(varchar, finished_on, 103)
& second query
Select Count(OrderID) As OrdersCompletedOnTime from table
where finished_on is not null
hope it helps
regards,
satish.
|||Thank you satish,
So, it is would be two different select statement in one single stored procedures.
|||yep,
regards,
satish
No comments:
Post a Comment