Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[TEMP_TABLE]')
and OBJECTPROPERTY(id, N'IsTable') = 1)
DROP TABLE [dbo].TEMP_TABLE
GO
IF EXISTS (SELECT * FROM test..sysobjects WHERE type = 'U' AND name = 'Mytable')
Begin
insert some code
End
[\code}
Questions about posting. See faq183-874