Viewing post 1 (of 1 total)
I have a table, Customer, with the CustomerID as an identity. I run this query:
select
customerID, count(city) as 'City'
into CustomerCities
from Customer
group by CustomerID
Does the CustomerCities table have...
May 15, 2013 at 12:19 am
#1615286