About Clik  | abdi_issa@hotmail.com
Search
Home Somali Internet Software Downloads Education Books Join
HTML JavaScript VBScript SQL PL/SQL ASP Java C++
&nsbp; Click here to buy & sell on eBay!  Accept credit cards Now!
SQL Basics
Introduction
Create Tables
Data Types
Delete/Modify Tables
Adding new rows
Create Sequences
Retreive Data [Query]
Sub Queries
Single-Row Functions
Group Functions
Formating Data
Joining Multiple Tables
Creating View
 
SQL View is a virtual or temporary table. Sql view is similar to the query in access so that you retrieve data from a table and store it in a view. Views are often created because of security reasons or to retrieve and store data from different tables. You can create a view same way as a table. Select statement is used to retreive data from a table. Here is an example of creating a view:
CREATE VIEW product_view AS
  SELECT name, description
  FROM product;
The name of the view we just created is product_view, which selects two columns, name and desc from product table.  The values from these two columns will be stored in this view.
Joining Multiple Tables More to Come