Structured Query Language (SQL) Flashcards

Language used for interacting with RDBMS

1
Q

Fundamental SQL Functionality for RDBMS,

A

CRUD data, Create/Manage databases, Design/Create DB Tables, Perform admin tasks (security, user management, import/export, backup)

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

SQL, a universal language?

A

SQL implementation my vary between RDBMS.

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

SQL, a Hybrid Language

A

Data Query Language (DQL), Data Definition Language (DDL), Data Control Language (DCL), Data Manipulation Language (DML)

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

DQL

A

Data Query Language. Get data that’s already stored

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

DDL

A

Data Definition Language. Define the schema of a DB and its data

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

DCL

A

Data Control Language. Create permissions which control a user’s access to the data

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

DML

A

Data Manipulation Language. Insert, update, and delete data

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

Query

A

Set of instructions, tells the RDBMS what information to retrieve. Strategic parsing from the data within a table(s)

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

mySQL login

A

mysql -u root -p

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