3.2 Data-cleaning with SQL functions

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

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:27 PM on 8/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

LENGTH() / LEN()

Return the length of a string of text by counting the number of characters it contains

2
New cards

SUBSTR()

Return a limited number of characters to create substrings from longer strings of text

3
New cards

SELECT FROM WHERE

Pull data from a specific place in a table, typically a table column

4
New cards

SELECT FROM

Pull data from any table in a database

5
New cards

DELETE

Remove data from a database

6
New cards

TRIM()

Remove leading, trailing, and repeated spaces in data

7
New cards

UPDATE

Change existing data in a database

8
New cards

CONCAT()

Add strings together to create new text strings that can be used as unique keys

9
New cards

COALESCE()

Return non-null values in a list

10
New cards

INSERT INTO

Add new data into a database

11
New cards

CAST()

Convert data from one data type to another