chapter 1 Flashcards
what does APEX enable users to do
Enables users to build and access applications as if they were running in separate databases.
what are the 2 components of apex
–> SQL workshop (learn sql)
–> application builder (design applcation)
which command is used to return all the rows in table
SELECT *
what is the syntax for select statement
SELECT *
FROM <TABLE_NAME>;</TABLE_NAME>
a statement is a ______
COMBINATION OF 2 OR MORE CLAUSES
what does the from clause specify
specifies the table containing the columns listed in the select clause
what statement do you use if you want to return a subset of the data
WHERE <CONDITION_1>;</CONDITION_1>
when will you get the invalid SQL statement
error
incorrect spelling for sql commands
When will you get the Name invalid identifier
error
when you enter the incorrect column name
when will you get the invalid SQL statement
error
incorrect spelling for SQL commands
what is a relational database table
–> It is a collection of objects or relations, a set of operators to act on those relations, and data integrity for accuracy and consistency.
–> allows tables to be related by a common field
what percentage of the world’s data resides in rdbms
20%
which companies use RDBMS
amazon.com
France telecom
The Claria corporation
what is a field
one value found at the intersection of a row and column.
what is a column
one kind of data in a table
what is a table
basic storage structure
what is a row
data for one table instance
what is primary key
unique identifier for each row
what is a foreign key
column that refers to the primary key column in another table
what are the 6 table properties?
–> Entries in columns are single-valued
–> Entries in columns are of the same kind
–> Each row is unique
–> sequence of columns is insignificant
–> sequence of rows is insignificant
–> Each column has a unique name
_______ organizes data into related rows and columns
Relational database management system
what do you use to access the data in rdbms
SQL statements and operators
in a very large database system ____, _____, and ______ make up the RDBMS
many users, servers and tables
what are the 4 categories of sql statements
–> data manipulation language (DML)
–> data definition language (DDL)
–> Transaction control language (TCL)
–> data control language (DCL)