私のビュー製品の次のコードは、エラーメッセージ Incorrect syntax near the keyword 'IF'を生成します
ALTER VIEW [dbo].[IDW_vwGetProductOutPut]
AS
IF EXISTS
( SELECT * FROM tempdb.dbo.sysobjects
WHERE ID = OBJECT_ID(N'tempdb..#TempPackaging'))
BEGIN
DROP TABLE #TempPackaging
END . . . . . .
--code to create temp table goes here . . and so on
これをどのようにコーディングしますか?