SELECT *
into #temp
FROM
(SELECT *
FROM vwActor
UNION
SELECT *
FROM vwDirect)
tryin to put contents of both views into one temp table...both hav same fields.
Thnks
into #temp
FROM
(SELECT *
FROM vwActor
UNION
SELECT *
FROM vwDirect)
tryin to put contents of both views into one temp table...both hav same fields.
Thnks
Comment