Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: INTO Identities

    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...

Viewing post 1 (of 1 total)