CIS407 Quiz 2

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

Data Definition Language

Limited to DB admins

2
New cards

Data Manipulation Language

used by programmers/developers to maintain and query the database

3
New cards

Data Control Language

limited to DB admins - used to keep the database secure

4
New cards

CREATE TABLE

creates a new table by specifying the table name, column names, and column data types.

5
New cards

DROP TABLE

The DROP TABLE statement deletes a table, along with all the table's rows, from a database.

6
New cards

ALTER TABLE

The ALTER TABLE statement adds, deletes, or modifies columns on an existing table.

7
New cards

ADD

adds a column

8
New cards

CHANGE

modifies a column

9
New cards

DROP

Deletes a column

10
New cards

Data type

a named set of values from which column values are drawn

11
New cards

Spatial data

stores geometric info, such as lines, polygons, and map coordinates

12
New cards

Document

data types that contain textual data in a structured format such as XML or JSON

13
New cards

UPDATE statement

modifies existing rows in a table

14
New cards

SET

the UPDATE system uses this clause to specify the new column.

15
New cards

Primary keys

a column, or group of columns, used to identify a row. To ensure that each value identifies exactly one row, a primary key must be unique and not NULL.