Ch 7 Flashcards

1
Q

Authentication

A

Authentication is the process the DBMS uses to verify that only registered users access the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Schema

A

In the SQL environment, a schema is a logical group of database objects, such as tables and indexes - that are related to each other. Usually, the schema belongs to a single user or application. A single database can hold multiple schemas that belong to different users or applications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wildcard character

A

A wildcard character is a symbol that can be used as a general substitute for other characters or commands. For example, to list all attributes and all rows of the PRODUCT table, use the following:

SELECT * FROM PRODUCT;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Subquery

A

A subquery, also known as a nested query or an inner query, is a query that is embedded (or nested) inside another query. The inner query is always executed first by the RDBMS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Alias

A

An alias is an alternate name given to a column or table in any SQL statement.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cascading order sequence

A

Used when you want to order a list by multiple values. It can be easily created by listing several attributes, separated by commas, after the ORDER BY clause:

ORDER BY EMP_LNAME, EMP_FNAME, EMP_INITIAL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly