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.
[COLOR=blue]DECLARE[/color] @TableId [COLOR=blue]int[/color]
[COLOR=blue]SELECT[/color] @TableId = [COLOR=#FF00FF]OBJECT_ID[/color]([COLOR=red]'TempDB..##Test'[/color])
[COLOR=blue]SELECT[/color] @TableId
[COLOR=blue]DECLARE[/color] @TableId [COLOR=blue]int[/color]
[COLOR=blue]SELECT[/color] @TableId = [COLOR=#FF00FF]OBJECT_ID[/color]([COLOR=red]'TempDB..##Test'[/color])
@TableId
[COLOR=blue]IF[/color] @TableId [COLOR=blue]IS[/color] NULL
[COLOR=green]-- Table does not exists
[/color][COLOR=blue]ELSE[/color]
[COLOR=green]-- Table does exists[/color]