0 votes
in Sql by
How we can update the SQL view?

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
asked Nov 7, 2021 in Sql by rajeshsharma
0 votes
0 votes
0 votes
asked Jun 15, 2023 in Sql by Robin
...