Viewing 2 posts - 1 through 3 (of 3 total)
Im not trying to solve anything Im trying to figure out how to do this for future reference
May 6, 2015 at 9:06 am
#1795965
nevermind i figured it out
Declare @Julycount int
Set @Julycount= (Select Count(*) From orders Where MONTH(OrderDate) = 7)
print 'The total orders for july is ' + Cast(@JulyCount...
May 5, 2015 at 2:05 pm
#1795743