Introduction to SQL & Special Operators Flashcards

1
Q

The standard language for
relational database management
systems. It stands for Structured
Query Language.

A

SQL

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

for defining database structure

A

DDL

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

for retrieving and updating data

A

DML

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

for controlled access to the database

A

DCL

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

DDL Constructs

A
  • CREATE TABLE, CREATE
    VIEWS, CREATE INDEX
  • ALTER TABLE, DROP TABLE,
    DROP VIEWS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

DML Constructs

A
  • INSERT
  • UPDATE
  • DELETE
  • SELECT
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

DCL Constructs

A
  • GRANT
  • REVOKE
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Determines whether the value of an
expression falls within a specified range
of values.

A

BETWEEN…AND

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

Determines whether the value of an
expression is equal to any of several
values in a specified list.

A

IN

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

Checks for missing data or null values.

A

IS NULL

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