SQL Flashcards

1
Q

what does RDBMS

A

Relation Data Bases Management System

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

How are RDBMS structure

A

Relational Data Bases Management System stores the data in form of a collection of tables and relations can be defined between the common fields of these tables.

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

What is a database?

A

A database is an organized collection of data, that can be stored and retrieved from a remote or local computer system.

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

What are the four basic operations supported by any relational database?

A

CRUD

Create
Read / Retrieve
Update
Delete

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

What does each CRUD operation mean?

A
Create = create or add new data
Read = retrieve or access data into memory
Update = update
Delete = delete
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

define SQL

A

Structure Query Language

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

What is a primary key?

A

A primary key is a column in a table that uniquely identifies every row.

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

What are the SQL methods?

A

CREATE / INSERT
SELECT
UPDATE
DELETE

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