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 sysobjects A inner join syscolumns B on A.id=B.id where A.name='table_name' and B.name='column_name')
print ('exists')
if exists( select * from information_schema.columns where table_name = 'table_name' and column_name='column_name' )
print ('exists')