Practice Midterm Flashcards
True or False? The keyword BETWEEN can be used in a WHERE clause to refer to a range of values.
True
True or False? To establish a range of values, < and > can be used.
True
True or False? If you are going to use a combination of three or more AND and OR conditions, it is often easier to
use the NOT and NOT IN operators.
True
True or False? The keyword LIKE can be used in a WHERE clause to refer to a range of values.
False
True or False? The format SELECT-FROM-WHERE is the fundamental framework of SQL SELECT statements.
True
True or False? The SQL statement: SELECT Number1 + Number2 AS Total FROM NUMBER_TABLE; adds two
numbers from each row together and lists the results in a column named Total.
True
True or False? Data Manipulation Language (DML) commands are used to define a database, including creating,
altering, and dropping tables and establishing constraints.
False
True or False? The result of every SQL query is a table.
True
True or False? The wildcard asterisk (*) is the Oracle SQL standard for indicating “any sequence of characters”.
False
True or False? The SQL keyword GROUP BY instructs the DBMS to group together those rows that have the same
value in a column.
True
Which statement is wrong about PRIMARY KEY constraint in SQL?
The Primary key…
a) uniquely identifies each record in a SQL database table.
b) can be made based on multiple columns
c) must be made of any single columns.
d) must contain UNIQUE values.
c) Primary key must be made of any single columns.
In existing table, ALTER TABLE statement is used to:
a) Add columns.
b) Add constraints.
c) Delete columns.
What is the SQL Query to delete all rows in a table without deleting the table (structure, attributes, and indexes).
DELETE FROM table_name;
In a table, a column contains duplicate value, if you want to list all different value only, then which SQL
clause is used?
DISTINCT
To give a temporary name to a table, or a column in a table for more readability, what is used?
aliases
Logical operators used in SQL are
AND, OR , NOT
To search for a specified pattern in a column, use
LIKE
Wrong statement about ORDER BY keyword is:
a) Used to sort the result-set in ascending or descending order
b) The ORDER BY keyword sorts the records in ascending order by default
c) To sort the records in ascending order, use the ASC keyword
d) To sort the records in descending order, use the DECENDING keyword.
d) To sort the records in descending order, use the DECENDING keyword.
Which SQL statement is used to extract data from a database?.
SELECT
If you want to allow age of a person > 18 in the column Age of table Person, then which constraint will be
applied to AGE column.
Check
What are the two rules of a relational database?
Entity and Referential Integrity
What is Entity Integrity?
- Entity Integrity is when no column within a primary key is null. This is necessary since the primary key is necessary to uniquely identify a row or an entity.
What is Referential Integrity?
- Referential Integrity is whenever a foreign key value is used it must refer to a existing and valid primary key within the primary table. A lack of this type of integrity will return us with incomplete or missing data.
Describe different types of relationships with examples.
- A PERSON is linked to an ID NUMBER, and a ID NUMBER has is linked to a PERSON. (One to One)
- A MUSEUM contains many ART WORKS, but ART WORKS are in only one MUSEUM at a time. (One to Many)
- Many TEXTBOOKS contains many AUTHORS and AUTHORS can be in more than one TEXTBOOK. (Many to Many)