Viewing 2 posts - 1 through 2 (of 2 total)
I prefer using the BCP utility which is fast and offers a lot of flexibility. You have the option of configuring the row and column delimiters.
For more information, please refer...
January 15, 2008 at 9:48 pm
#768460
Try this..
SELECT MONTH(OrderDate), COUNT(CustomerID) As ActiveCustomers
FROM v_Customer -- VIEW
GROUP BY MONTH(OrderDate)
ORDER BY OrderDate
January 15, 2008 at 9:37 pm
#768458