0 votes
in Sql by
What are the steps to update the view in SQL

1 Answer

0 votes
by
SQL CREATE and REPLACE can be used for updating the view.

Execute the below query to update the created view.

Syntax:

CREATE OR REPLACE VIEW view_name AS

 SELECT column_name(s)

 FROM table_name

 WHERE condition

Related questions

0 votes
0 votes
0 votes
asked Jul 6, 2020 in Sql by Robindeniel
0 votes
0 votes
asked Dec 15, 2020 in Sql by SakshiSharma
...