Introduction to SQL & Special Operators Flashcards
1
Q
The standard language for
relational database management
systems. It stands for Structured
Query Language.
A
SQL
2
Q
for defining database structure
A
DDL
3
Q
for retrieving and updating data
A
DML
4
Q
for controlled access to the database
A
DCL
5
Q
DDL Constructs
A
- CREATE TABLE, CREATE
VIEWS, CREATE INDEX - ALTER TABLE, DROP TABLE,
DROP VIEWS
6
Q
DML Constructs
A
- INSERT
- UPDATE
- DELETE
- SELECT
7
Q
DCL Constructs
A
- GRANT
- REVOKE
8
Q
Determines whether the value of an
expression falls within a specified range
of values.
A
BETWEEN…AND
9
Q
Determines whether the value of an
expression is equal to any of several
values in a specified list.
A
IN
10
Q
Checks for missing data or null values.
A
IS NULL