Java Games: Flashcards, matching, concentration, and word search.

Creating and Managing Views

Corretly match Each term to its correct description.

AB
ViewA table of logical subsets or combinations of data based on a table or another view
VIEW_NAMEName of view
FORCECreates a view regardless of whether or not the base tables exist
Simple viewDerives data from a table, no functions or groups, performs DML operations through the view
NOFORCECreates the view only if the base table exists
CREATE VIEWCreates a view by embedding a subquery within it
AliasSpecifies a name for each expression selected by the view’s query
SubqueryA complete SELECT statement
Complex viewDerives data from more than one table, contains functions or groups of data, and does not always allow DML operations through the view
REPLACERe-creates the view if it already exists
Simple ViewThe subquery derives data from only one table and it does not contain a join function or any group functions
ROWNUMA pseudo-column which assigns a sequential value starting with 1 to each of the rows returned from the subquery
WITH CHECK OPTIONSpecifies that INSERTS and UPDATES performedthrough the view can’t create rows which the view cannot select
WITH READ ONLYEnsures that no DML operations can be performed on this view
TOP- N-ANALYSISAsks for the N largest or smallest values in a column
DROP VIEWRemoves a view
INLINE VIEWSubqueries with an alias that can be used within a SQL statement



This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities