SQL

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:34 PM on 5/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

What does SQL stand for?

Structured Query Language

2
New cards

What is SQL used for?

  • fast and efficient retrieval

  • to query data

  • to manipulate data

  • to define data

  • to control data access

3
New cards

SELECT

Retrieves data from a database table

4
New cards

FROM

Specifies the tables to retrieve data from

5
New cards

WHERE

Filters the data based on a specified condition

6
New cards

LIKE

Filters the data based on a specific pattern

7
New cards

AND

Combines multiple conditions in a WHERE clause

8
New cards

OR

Retrieves data when at least one of the conditions is true

9
New cards

DELETE

Removes one or more rows from a table

10
New cards

INSERT

Inserts new rows to a table

11
New cards

DROP

Deletes an existing table and all of its data

12
New cards

JOIN

Combines rows from two or more tables based on a related column

13
New cards

SELECT *

Select all

14
New cards

A%

All data beginning with A

15
New cards

%A

All data ending in A