Working with MySQL Data

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

1/5

flashcard set

Earn XP

Description and Tags

Flashcards covering insert, update, and delete statements in MySQL.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

Insert Statements

Adds data to tables line by line.

2
New cards

Values

Keyword used in SQL to add values to specified columns in a table.

3
New cards

Update Statement

Used to change the values in any row or in many rows at once.

4
New cards

WHERE Clause

A clause used with UPDATE statements to filter the rows you want to change.

5
New cards

Delete Statements

Removes rows from a MySQL table. Used carefully, they can actually remove all data from a table.

6
New cards

Truncate Statement

Removes all data from a table. It is faster than using a delete statement with no where clause. It resets the auto increment counter.