SQL Keywords

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/37

flashcard set

Earn XP

Description and Tags

A list of the most important keywords in SQL

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

38 Terms

1
New cards

SELECT

Retrieve data from a table

2
New cards

FROM

Specify the table

3
New cards

WHERE

Filter records

4
New cards

GROUP BY

Group rows with the same values

5
New cards

HAVING

Filter groups

6
New cards

ORDER BY

Sort results

7
New cards

DISTINCT

Remove duplicates

8
New cards

LIMIT

Restrict number of rows returned

9
New cards

OFFSET

Skip rows (Pagination)

10
New cards

CREATE TABLE

Create a new table

11
New cards

ALTER TABLE

Modify an existing table

12
New cards

DROP TABLE

Delete a table

13
New cards

TRUNCATE

Remove all records from a table (not to be confused with trunc)

14
New cards

RENAME

Change the name of a table or column

15
New cards

COMMENT

Add comments to tables/columns

16
New cards

INSERT INTO

Add new records

17
New cards

UPDATE

Modify existing records

18
New cards

DELETE FROM

Remove records

19
New cards

GRANT

Give user permissions

20
New cards

REVOKE

Remove user permissions

21
New cards

INNER JOIN

Returns matching rows in both tables

22
New cards

LEFT JOIN

Returns all rows from the left table + matching rows from the right

23
New cards

RIGHT JOIN

Returns all rows from the right table + matching rows from the left

24
New cards

FULL JOIN

Returns all rows when there is a match in either table

25
New cards

CROSS JOIN

Returns a Cartesian product of both tables

26
New cards

PRIMARY KEY

Unique identifier for records

27
New cards

FOREIGN KEY

Links to another table’s primary key

28
New cards

UNIQUE

Ensures all values in a column are unique

29
New cards

NOT NULL

Ensures a column cannot have NULL values

30
New cards

AND

Both conditions must be true

31
New cards

OR

At least one condition must be true

32
New cards

NOT

Negates a condition

33
New cards

IN

Matches any value in a list

34
New cards

BETWEEN

Checks if a value is within a range

35
New cards

LIKE

Matches patterns using wildcards

36
New cards

IS NULL

Checks for NULL values

37
New cards

IS NOT NULL

Checks for values that are not NULL

38
New cards

USING()

Instead of using this

SELECT
 *
FROM table1
INNER JOIN table2 ON table1.id = table2.id;
  • Keeps duplicate columns if selecting *

You can use

SELECT
 *
FROM table1
JOIN table2
USING (id);
  • Only works if the column names are identical

  • Automatically removes duplicate columns from the result, so the join column appears only once

Used with JOIN operations to simplify the ON condition when the columns you’re joining on have the same name in both tables.