Chapter 03 slides

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

1/19

flashcard set

Earn XP

Description and Tags

Chapter 3 Quiz

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

20 Terms

1
New cards

When coded in a WHERE clause, which search condition will return invoices when PaymentDate is not null and InvoiceTotal is greater than or equal to $500?

PaymentDate IS NOT NULL AND InvoiceTotal >= 500

2
New cards

Which operator do you use to concatenate character strings in a string expression?

+

3
New cards

Which of the following is not a valid column alias name?

Total Sales

4
New cards

What keyword do you code at the end of the ORDER BY clause to sort the records that are retrieved by a SELECT statement in descending sequence?

DESC

5
New cards

When you code an ORDER BY clause, which of the following can you not use?

column data type

6
New cards

Keyword

A word that has a predefined meaning

7
New cards

Boolean Expression or Predicate

An expression that evaluates to True or False

8
New cards

Column alias

A different name specified for a column (normally through use of the AS clause)

9
New cards

String Expression

A combination of one or more character columns and literal values

10
New cards

Concatenation

Combining character columns and / or literal values

11
New cards

+(plus sign)

Concatenation operator

12
New cards

Literal value

Something enclosed in single quotation marks

13
New cards

(* / % + -)

Arithmetic operators

14
New cards

Function

Something that performs an operation and returns a result

15
New cards

Parameter or argument

A value passed to a function

16
New cards

Nested Sort

One sort nested within another sort

17
New cards

Null Value

Represents a value that is unknown, unavailable, or not applicable. It is not the same as a zero, a blank space, or an empty string

18
New cards

Which clause of the SELECT statement names the table that contains the data to be

19
New cards
20
New cards