SQL Basics Flashcards

To be able to recall basic terminology of SQL so you don't look like a dumbass talking to the smart people.

1
Q

SQL stands for ?

A

Structured Query Language

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

What is a relational database ?

A

Is a database that organizes information into one or more tables.

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

What is a table ?

A

A collection of data organized into rows and columns

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

What is a column ?

A

A set of data values of a particular type

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

What is a row ?

A

A single record in a table

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

What is a statement ?

A

Is typed text that a database recognizes as a command;
Statements always end in a semicolon ;
Statements vary but will usually contain a clause, a table name (the specific database set) and parameters.

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

What is a clause ?

A

Clauses preform specific tasks when read by the database.Clauses are always written in CAPITAL LETTERS !!! Clauses can also be referred to as commands.

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

What is a parameter ?

A

A parameter is a list of columns, data types, or values, that are part of a command aka clause. Parameters in conjunction with a command form an argument !!!

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