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.
Create table #TestIT(No_Key varchar(6))
Insert into #TestIt(No_Key) Values('Value1')
Insert into #TestIt(No_Key) Values('Value2')
Insert into #TestIt(No_Key) Values('Value3')
If not Exists (select No_Key from #TestIt where No_Key = 'Value4')
Insert into #TestIt(No_Key) Values('Value4')
else Select 'Duplicate key - No Insert'
If not Exists (select No_Key from #TestIt where No_Key = 'Value4')
Insert into #TestIt(No_Key) Values('Value4')
else Select 'Duplicate key - No Insert'
Select * from #TestIt
Drop table #TestIt