Question
SQL: Select INTO using joins?
I can do a simple select into easy enough:
SELECT * INTO myNewTable FROM myOldTable
How do I do that, but using a much more complex select statement using joins
and unions?
Would I uses a nested query for that?
SELECT (SELECT [my complex query]) INTO myNewTable FROM ???
-Darrel
SELECT * INTO myNewTable FROM myOldTable
How do I do that, but using a much more complex select statement using joins
and unions?
Would I uses a nested query for that?
SELECT (SELECT [my complex query]) INTO myNewTable FROM ???
-Darrel
