Database application and the database
Data and the database
The user and the database application
Database application and SQL
Single-user database application
Multiuser database application
E-commerce database application
Data mining database application
Structured Query Language
Sequential Query Language
Structured Question Language
Sequential Question Language
User data
Metadata
Report
Indices
Users
Database applications
DBMS
COBOL programs
ADD
CREATE
INSERT
MAKE
REMOVE FROM CUSTOMER...
DROP FROM CUSTOMER...
DELETE FROM CUSTOMER WHERE...
UPDATE FROM CUSTOMER...
Limits the column data that are returned
Limits the row data are returned
Both A and B are correct
Neither A nor B are correct
To specify the syntax and semantics of SQL data definition language
To specify the syntax and semantics of SQL manipulation language
To define the data structures
All of the above
An exact math is necessary in a SELECT statement.
An exact match is not possible in a SELECT statement.
An exact match is necessary in a CREATE statement.
An exact match is not possible in a CREATE statement.
A virtual table that can be accessed via SQL commands.
A virtual table that cannot be accessed via SQL commands.
A base table that can be accessed via SQL commands.
A base table that cannot be accessed via SQL commands.
DDL
DML
HTML
XML
SELECT, FROM, WHERE
FROM, WHERE, SELECT
WHERE, FROM, SELECT
SELECT, WHERE, FROM
Braces -- {...}.
CAPITAL LETTERS.
Parenthesis -- (...).
Brackets -- [...].
Report
Form
File
Table
COUNT, SUM, AVG, MAX, MIN
SUM, AVG, MIN, MAX, MULT
SUM, AVG, MULT, DIV, MIN
SUM, AVG, MIN, NAME
Acts like a WHERE clause but is used for groups rather than rows.
Acts like WHERE clause but is used for rows rather than columns.
Acts like a WHERE clause but is used for columns rather than groups.
Acts EXACTLY like a WHERE clause.
Asterisk (*); percent sign(%)
Percent sign(%); underscore(_)
Underscore(_); question mark(?)
Question mark(?); asterisk(*)
ONLY
UNIQUE
DISTINCT
Option 4
DDL
DML
HTML
XML
SELECT NAME IN CUSTOMER WHERE STATE IN ('VA');
SELECT NAME IN CUSTOMER WHERE STATE = 'VA';
SELECT NAME IN CUSTOMER WHERE STATE = 'V';
SELECT NAME FROM CUSTOMER WHERE STATE IN ('VA');
SORT BY
ALIGN BY
ORDER BY
GROUP BY
Use FROM to name the source table(s) and list the columns to be shown after SELECT.
Use USING to name the source table(s) and list the columns to be shown after SELECT.
Use SELECT to name the source table(s) and list the columns to be shown after USING.
Use USING to name the source table(s) and list the columns to be shown after WHERE.
SELECT
READ
QUERY
None of the above is correct
For ranges.
To limit the columns displayed.
As a wildcard.
None of the above is correct.
Wait!
Here's an interesting quiz for you.