quiz 1 Flashcards

1
Q

It refers to the collection of related fields.

A

record

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

It is an organized collection of data

A

database

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

collection of records.

A

table

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

single piece of data

A

field

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

database which uses pen and paper in storing data

A

manual database

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

a database that is composed of one category of data

A

simple database

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

database that is composed of two or more categories of data connected by a common field.

A

relational database

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

database that stores data in a digital media

A

computerized database

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

used to set distinction between records to ensure all records are unique.

A

primary key

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

message given by MySQL if no result has been found in a query

A

empty set

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

display all records

A

select * from

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

Display all databases

A

show databases

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

open a database

A

use

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

display the table structure

A

describe

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

display all tables in database

A

show tables

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

make a new table

A

create table

17
Q

delete a record

A

delete

18
Q

add a new record

A

insert into

19
Q

modify a record

A

update

20
Q

modify the table structure

A

alter table

21
Q

change the name of a fieldname or column

A

alter table…change

22
Q

change the data type or width of a fieldname or column

A

alter table….modify

23
Q

add a new fieldname or column

A

alter table…add

24
Q

delete a fieldname or column

A

alter table…drop

25
Q

change the table name

A

alter table….rename to