Answers for "sql view drop if exists"

SQL
0

sql drop view if exists

DROP VIEW IF EXISTS yourview;
Posted by: Guest on April-17-2021
0

t-sql delete view if exists

if exists(select 1 from sys.views where name='tst' and type='v')
drop view tst;
go

create view tst
as
select * from test
Posted by: Guest on March-30-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language