A real table stored in the database A virtual table based on the result-set of an SQL statement A function that modifies data in the database A temporary table used for backup purposesSubmit Answer » What is an Exercise? Test what you learned in the chapter: SQL View by completing ...
SQL Updating a View A view can be updated with theCREATE OR REPLACE VIEWstatement. SQL CREATE OR REPLACE VIEW Syntax CREATEORREPLACEVIEWview_nameAS SELECTcolumn1,column2, ... FROMtable_name WHEREcondition; The following SQL adds the "City" column to the "Brazil Customers" view: ...
In SQL, a view is a virtual table based on the result set of an SQL statement.The CREATE VIEW command creates a view. The following SQL creates a view that selects all customers from Brazil:Example CREATE VIEW [Brazil Customers] AS SELECT CustomerName, ContactName FROM Customers WHERE ...
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.