Databases| SQL| MySQL| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
SQL Create View 
 

A View is a imaginary and virtual table in SQL. In SQL, a view is defined as a virtual table outcome as a result of an SQL statement.

 

SQL Create View

                         

A View is a imaginary and virtual table in SQL. In SQL, a view is defined  as a virtual table outcome as a result of an SQL statement. A view include rows and columns is simply like a real table. The column in a view is the result-set of one or more real tables in the database. The views include a SQL functions like WHERE Clause and JOIN statements ,which is used to view the present data as it seems to be outcome of single table.

  Understand with Example 

 The Tutorial illustrates an example from SQL Create View. In this Tutorial, we create a table 'Stu_Table with respective field attribute and data  type respectively.

  create table: The create table keyword is used to create a table Stu_Table.

Create Table Stu_Table

create table Stu_Table(Stu_Id integer(2), Stu_Name varchar(15), Stu_Class  varchar(10))

  Once your table Stu_Table is created, The insert into statement of SQL is used to insert the records or rows into the table name Stu_Table.

   insert into :The insert into is used to add the records or rows into your created table 'Stu_Table'.

Insert data into Stu_Table

insert into Stu_Table values(1,'Komal',10);
insert into Stu_Table values(2,'Ajay',10);
insert into Stu_Table values(3,'Rakesh',10);
insert into Stu_Table values(4,'Bhanu',10);
insert into Stu_Table values(5,'Santosh',10);
insert into Stu_Table values(6,'Tanuj',10);

 The Select Statement return you the records present in the table stu_Table.

Stu_Table

Stu_Id Stu_Name Stu_Class
1 Komal 10
2 Ajay 10
3 Rakesh 10
4 Bhanu 10
5 Santosh 10
6 Tanuj 10

SQL CREATE VIEW Syntax

  A view shows updated records. The database recreate the data using view's SQL statement. The user write a queries view..

CREATE VIEW View_Name( Column_Name )
AS SELECT  Column_Name 
FROM Table_Name

SQL CREATE VIEW Query

The view "Stu_View" include the list of  all the column from table "Stu_Table",which  you want to show in view table. The Syntax used to create view table in SQL is given as:

CREATE VIEW Stu_View( Stu_id, Stu_Name, Stu_Class)
AS SELECT  Stu_id, Stu_name, Stu_class 
FROM Stu_Table

Display records form View

Once the view is created ,You can use select  query to retrieve the records from 'Stu_View' table.

Select * from Stu_View

Result

Stu_Id Stu_Name Stu_Class
1 Komal 10
2 Ajay 10
3 Rakesh 10
4 Bhanu 10
5 Santosh 10
6 Tanuj 10

                         

» View all related tutorials
Related Tags: sql mysql c table data ui datatypes types type tutorial field name ria create tab ie example with to datatype

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.