III. DMSL | Sorting and Filtering Data

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

1/23

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Order By

sorts rows in results for presentation purposes

2
New cards

Order By

guarantees the sort order of the result

3
New cards

Order By

sorts all NULLs together

4
New cards

Order By

Last clause to be logically processed

5
New cards

Order By

it can refer to columns by name, alias

6
New cards

ASC or DESC

Order By declares sort order with ___ or ___

7
New cards

Where

uses predicates

8
New cards

Where

must be expressed as logical conditions

9
New cards

Where

only rows for which predicate evaluates to TRUE are accepted

10
New cards

Where

Values of FALSE or UNKNOWN filtered out

11
New cards

Where

______ clause follows FROM, precedes other clauses

12
New cards

Top

Filtering in the SELECT clause by using the ___ Option

13
New cards

OFFSET-FETCH

Filtering in the ORDER BY clause by using the _____-_____

14
New cards

TOP

allows you to limit the number or percentage of rows returned by a query

15
New cards

TOP

works with ORDER BY clause to limit rows by sort order.

16
New cards

percent

With _____, the number of rows will be rounded up.

17
New cards

with ties

Retrieves duplicates where applicable.

18
New cards

TOP

is proprietary to Microsoft SQL Server

19
New cards

OFFSET-FETCH

is an extension to the ORDER BY clause.

20
New cards

OFFSET-FETCH

it allows filtering a requested range of rows.

21
New cards

OFFSET-FETCH

provides a mechanism for paging through results.

22
New cards

OFFSET-FETCH

specifies number of rows to skip, number of rows to retrieve.

23
New cards

OFFSET-FETCH

This is only available in the SQL Server 2012, 2014 and 2016.

24
New cards

Offset

value must be supplied