Wednesday 26 June 2013

How To Use VIEWS Object In SQL

sql - views


In previous chapter i have explained How To Use Dates(timestamp) In SQL now i am gonna eplain you How To Use VIEWS Object In SQL

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.

SQL Create View Code:

CREATE VIEW virtualInventory
AS 
SELECT * FROM inventory;
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 View Code:

USE mydatabase;

SELECT *
FROM virtualInventory;

SQL Results:

idproductquantityprice
119" LCD Screen25179.99
2HP Printer989.99
3Pen780.99
4Stapler37.99
5Hanging Files3314.99
6Laptop16499.99
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
SET price = '1.29'
WHERE product = 'Pen';
Execute the following query to verify the results:

SQL Verification Query Code:

USE mydatabase;

SELECT *
FROM virtualInventory
WHERE product = 'Pen';

SQL Results:

idproductquantityprice
3Pen781.29

sql - drop view

Views can also be removed by using the DROP VIEW command.

SQL Drop View:

USE mydatabase;

DROP VIEW virtualInventory;

No comments: