answersLogoWhite

0


Best Answer

SQL CREATE VIEW achieves the creation of a table or tables in the SQL database. One can then create tables to the purpose they desire and fill them in with information.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does SQL CREATE VIEW achieve?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

Create view in SQL?

create view vw_active_employee as select * from employee where status = 'Active' after creating the view, view can be used as a table to see active employee. e.g. select * from vw_active_employee Basically we save sql as a database object, so that we can use that in future as a virtual table.


What is view in sql server 2005?

View in SQL is a virtual table.It is possible to add SQL functions ,WHERE and JOIN statements to a view.This will help in presenting the data as if coming from a single table.It is possible to update the view also .We can drop a view also if not needed.


Why create view in database?

A View is similar to a Table and can be mistaken for a table by a novice application developer. CREATE VIEW VIEW_NAME AS SQL QUERY Here the SQL Query includes the Select query on a table that is to be displayed as a View. The view is a read only structure that only displays contents from a table and the user cannot insert or update or delete any data in the underlying table. Views are generally created to impose access restrictions to a specific subset of users whom you do not want to give full access but at the same time want them to view the data.


What do you mean sql client?

In the context of computer programming and database management, an SQL client is a software application or tool that allows users to connect to a database server and execute SQL queries against the database. The SQL client provides an interface for users to enter SQL commands, execute those commands against the database, and view the results. Some examples of SQL clients include MySQL Workbench, Microsoft SQL Server Management Studio, and Oracle SQL Developer. SQL clients are commonly used by database administrators, software developers, data analysts, and other professionals who work with databases. They are essential tools for managing and manipulating data in relational databases. For more information, please visit: 1stepGrow


What is the different between a view and a create view?

View is a virtual table that do not have any data of its own but have data that is derived from another table called base table. Create view is the command used to create a view (virtual table).

Related questions

Create view in SQL?

create view vw_active_employee as select * from employee where status = 'Active' after creating the view, view can be used as a table to see active employee. e.g. select * from vw_active_employee Basically we save sql as a database object, so that we can use that in future as a virtual table.


What are sql commands?

SQL commands are specific structured query language keywords that are used to create, alter, and view data held withing a database. (Ex. SELECT, CREATE, ALTER) For more information about SQL: http://en.wikipedia.org/wiki/SQL


Explain various DDl commands in SQL?

it contains of cammands to create the object such as view,index etc


What Is ANSI SQL?

ANSI SQL is the American National Standards Institute standardized Structured Query Language. ANSI SQL is the base for several different SQL languages such as T-SQL and PL/SQL. ANSI SQL is used to Create, Alter, and View data stored within a database. For more information about ANSI: http://www.ansi.org/ For more information about SQL: http://en.wikipedia.org/wiki/SQL


How do you change the design of a query in Access?

You can do it in the Design Grid in Design View or you can do it through SQL view if you know how to use SQL.


What is view in sql server 2005?

View in SQL is a virtual table.It is possible to add SQL functions ,WHERE and JOIN statements to a view.This will help in presenting the data as if coming from a single table.It is possible to update the view also .We can drop a view also if not needed.


Can you use SQL commands to modify queries created using the Simple Query Wizard in Access?

Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.Yes. Once a query has been created in Access, you can go to SQL View and make changes to it.


How do you make a query on Microsoft access?

Open a new query. Bring in the table you want to append records from and add in the fields you want to use. Click on the Query menu and pick Append Query. Choose the table that you want to append to from the drop down list. In the Append To line of the query design grid you can choose the corresponding fields you want to append to. When you have them chosen and applied any criteria, then you can run the query. Before changing to an Append query it is often best to first set it up as a Select query so that you can see what records and fields will be appended when it is run. You can be more certain then that the correct records will be added.


Why create view in database?

A View is similar to a Table and can be mistaken for a table by a novice application developer. CREATE VIEW VIEW_NAME AS SQL QUERY Here the SQL Query includes the Select query on a table that is to be displayed as a View. The view is a read only structure that only displays contents from a table and the user cannot insert or update or delete any data in the underlying table. Views are generally created to impose access restrictions to a specific subset of users whom you do not want to give full access but at the same time want them to view the data.


What is an inline view?

An inline view is where you can use a SQL from inside an outer select. Select * From (select fields from view)


Write the detail of sql?

SQL is a database programming language.By this language we can create ,modify and other updating of our database record.


How do you compile a PLSQL procedure?

You can do that with Sql*Plus: SQL> CREATE OR REPLACE PROCEDURE foo ... IS ... END foo; / SHOW ERRORS