DP - Section 1 (1) Flashcards
System software consists of low level programs designed to interact with the computer hardware.
……… …………, …………, and system utilities are examples of system software
Operating systems / compilers
Two components in Oracle Application Express are:
SQL Workshop
Application Builder
What does APEX stands for?
Oracle Application Express (APEX)
What do you call number 2
Statement window
What do you call number 5?
Results window
………………..: The rules governing the formation of statements in a programming language.
Syntax
The ……………. command returns all the rows in a table
SELECT *
The starts with the word ………….. followed by a and a ………………….. followed by a value or …………………..
WHERE / column name / Comparison Operator (=, >,
The select command select ………………..
columns (at least as per my understanding now)
………….. ………….: Collections of objects or relations, set of operators to act on those relations, and data integrity for accuracy and consistency.
Relational database
……………: Intersection of a row and column
Field
……………: A relational database management system.
RDBMS
Let’s review the following key terms:
- …………. – basic storage structure
- ………. – one kind of data in a table
- ……… – data for one table instance
- table
- column
- row
Let’s review the following key terms:
- …………… – the one value found at the intersection of a row and a column
- ……….. ……….. – unique identifier for each row
- ………. ………. – column that refers to a primary-key column in another table
- field
- primary key
- foreign key
There are six properties of tables in a relational database:
- Property 1: Entries in columns are …………………….
- Property 2: Entries in columns are of the ……………………
- Property 3: Each row is ………………
- Property 4: Sequence of columns is …………….
- Property 5: Sequence of rows is …………….
- Property 6: Each column has a ………………….
- single-valued
- same kind
- unique
- insignificant
- insignificant
- unique name
A relational database-management system (RDBMS) …………… data into related rows and columns
organizes
As shown in the diagram, communicating with an RDBMS is accomplished by entering a SQL statement in Oracle Application Express
The request is then sent to the Oracle Server (a database running on a computer), the request is processed and the data returned is displayed
In very large database systems, ……….., …………., and ………….. make up the RDBMS
many users, servers, and tables
There are four main categories of SQL statements:
- Data manipulation language (DML)
- Data definition language (DDL)
- Transaction control language (TCL)
- Data control language (DCL)
Data manipulation language (DML) statements begin with ……, …….., ………… ,or ………….. and are used to modify the table data by entering new rows, changing existing rows, or removing existing rows
INSERT, UPDATE, DELETE, or MERGE
Data definition language (DDL) statements create, change, and remove ………. ……….. from the database
data structures
The keywords ……, ………., …………., …………, and …………… begin Data definition language (DDL) statements
CREATE, ALTER, DROP, RENAME, and TRUNCATE
The SELECT statement is a limited form of ………… …………. in that it can only access data in the database.
It cannot manipulate data in the database, although it can operate on the accessed data before ………………………………………………
DML statement
returning the results of the query.
Transaction control language (TCL) statements are used to ………….. ……….. …………… made by Data manipulation language (DML) statements
TCL changes can be grouped together into …………… …………..
manage the changes
logical transactions