Is it possible to use INTO clause in views?I tried out it like the one below,
SELECT [ApplicantId], [KSAId],
[Accurate]+[Speed] as ‘Score’,
[TimeCompleted] INTO temp2 FROM Table1
WHERE TimeCompleted Is not Null
but it throws me an error, Incorrect syntax near the keyword ‘into’.
No.