I have two separate tables used for categories.
One is Categories(ID, Title, Description)
, and the other is SubCategories(ID, UpperID, Title, Description)
I want to insert the records from categories to SubCategories with upperID=0. I've looked at SQL SELECT INTO
but don't know how to use it for existing tables.