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

Oracle Database Programming Section x10 Vocabulary Review

AB
ROWNUMa pseudocolumn which assigns a sequential value starting with 1 to each of the rows returned from the subquery.
CREATE OR REPLACE VIEWrecreates or creates a view.
FORCEcreates a view regardless of whether or not the base tables exist.
INLINE VIEWsubqueries with an alias that can be used within a SQL statement
WITH CHECK OPTIONspecifies that INSERTS and UPDATES performed through the view can't create rows which the view cannot select.
DROP VIEWremoves a view
Viewa table of logical subsets or combinations of data based on a table or another view.
Simple Viewderives data from a table, no functions or groups, performs DML operations through the view.
Complex Viewderives data from more than one table, contains functions or groups of data, and does not always allow DML operations through the view.
TOP-N Analysisasks for the N largest or smallest values in a column.
CREATE VIEWcreates a view by embedding a subquery within it.

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