This quiz assesses knowledge in database management systems, focusing on SQL, DBMS roles, and database applications. It is designed for learners to understand enterprise-class database systems, emphasizing practical SQL usage and system understanding.
Structured Query Language
Sequential Query Language
Structured Question Language
Sequential Question Language
Rate this question:
SELECT, FROM, WHERE
FROM, WHERE, SELECT
WHERE, FROM, SELECT
SELECT, WHERE, FROM
Rate this question:
COUNT, SUM, AVG, MAX, MIN
SUM, AVG, MIN, MAX, MULT
SUM, AVG, MULT, DIV, MIN
SUM, AVG, MIN, NAME
Rate this question:
SELECT Persons
SELECT * Persons
SELECT * FROM Persons
SELECT [all] FROM Persons
Rate this question:
SAVE
UPDATE
MODIFY
SAVE AS
Rate this question:
SELECT FirstName FROM Persons
SELECT Persons FirstName
EXTRACT FirstName FROM Persons
Option 4
Rate this question:
ADD RECORD
INSERT INTO
ADD NEW
INSERT NEW
Rate this question:
SELECT * FROM Persons WHERE FirstName'Peter' AND LastName'Jackson'
SELECT FirstName='Peter', LastName='Jackson' FROM Persons
SELECT * FROM Persons WHERE FirstName='Peter' AND LastName='Jackson'
Option 4
Rate this question:
DELETE FROM Persons WHERE FirstName = 'Peter'
DELETE ROW FirstName='Peter' FROM Persons
DELETE FirstName='Peter' FROM Persons
Option 4
Rate this question:
ADD
CREATE
INSERT
MAKE
Rate this question:
INSERT ('Jimmy', 'Jackson') INTO Persons
INSERT INTO Person VALUES ('Jimmy', 'Jackson')
INSERT VALUES ('Jimmy', 'Jackson') INTO Persons
Option 4
Rate this question:
SELECT [all] FROM Persons WHERE FirstName='Peter'
SELECT*FROM Persons WHERE FirstName='Peter'
SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
SELECT * FROM Persons WHERE FirstName'Peter'
Rate this question:
DDL
DML
HTML
XML
Rate this question:
SORT BY
ALIGN BY
ORDER BY
GROUP BY
Rate this question:
Report
Form
File
Table
Rate this question:
SELECT
READ
QUERY
None of the above is correct
Rate this question:
SELECT * FROM Persons SORT 'FirstName' DESC
SELECT * FROM Persons ORDER BY FirstName DESC
SELECT * FROM Persons ORDER FirstName DESC
SELECT * FROM Persons SORT BY 'FirstName' DESC
Rate this question:
SELECT COUNT(*) FROM Persons
SELECT COLUMNS() FROM Persons
SELECT COLUMNS(*) FROM Persons
SELECT COUNT() FROM Persons
Rate this question:
Users
Database applications
DBMS
COBOL programs
Rate this question:
For ranges.
To limit the columns displayed.
As a wildcard.
None of the above is correct.
Rate this question:
ONLY
UNIQUE
DISTINCT
Option 4
Rate this question:
Braces -- {...}.
CAPITAL LETTERS.
Parenthesis -- (...).
Brackets -- [...].
Rate this question:
REMOVE FROM CUSTOMER...
DROP FROM CUSTOMER...
DELETE FROM CUSTOMER WHERE...
UPDATE FROM CUSTOMER...
Rate this question:
Oracle
SQL
Microsoft Access
DBase
Rate this question:
DDL
DML
HTML
XML
Rate this question:
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
Rate this question:
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.
Rate this question:
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');
Rate this question:
User data
Metadata
Report
Indices
Rate this question:
Equi-join
Natural join
Outer join
All of the above
Rate this question:
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.
Rate this question:
Asterisk (*); percent sign(%)
Percent sign(%); underscore(_)
Underscore(_); question mark(?)
Question mark(?); asterisk(*)
Rate this question:
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.
Rate this question:
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
Rate this question:
External level
Conceptual level
Internal level
Option 4
Rate this question:
Database application and the database
Data and the database
The user and the database application
Database application and SQL
Rate this question:
Involves the use of an inner and outer query.
Cannot return the same result as a query that is not a subquery.
Does not start with the word SELECT.
All of the above.
Rate this question:
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.
Rate this question:
Equi-join
Natural join
Outer join
Cartesian join
Rate this question:
Quiz Review Timeline (Updated): Mar 21, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.