SQL - Views: SQL Create View Code
SQL - Views: SQL Create View Code
SQL VIEWS are data objects, and like SQL Tables, they can be queried, updated, and dropped. A SQL VIEW is a virtual table containing columns and rows except that the data contained inside a view is generated dynamically from SQL tables and does not physically exist inside the view itself.
With a successful execution of this query, we have now created a view data object of the inventory table. The virtualInventory view is considered a data object (like a table) and is now accessible to us the developer. Views can be queried exactly like any other SQL table.
SQL Results:
id product 2 HP Printer 3 Pen 4 Stapler 5 Hanging Files 6 Laptop quantity price 179.99 89.99 0.99 7.99 14.99 499.99 9 78 3 33 16 1 19" LCD Screen 25
Even though a SQL VIEW is treated like a data object in SQL, no data is actually stored inside of the view itself. The view is essentially a dynamic SELECTquery, and if any changes are made to the originating table(s), these changes will be reflected in the SQL VIEW automatically.
SQL Code:
USE mydatabase;
UPDATE inventory
SQL Results:
id product quantity price 3 Pen 78 1.29