III. DMSL | Sorting and Filtering Data

studied byStudied by 9 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 23

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

24 Terms

1

Order By

sorts rows in results for presentation purposes

New cards
2

Order By

guarantees the sort order of the result

New cards
3

Order By

sorts all NULLs together

New cards
4

Order By

Last clause to be logically processed

New cards
5

Order By

it can refer to columns by name, alias

New cards
6

ASC or DESC

Order By declares sort order with ___ or ___

New cards
7

Where

uses predicates

New cards
8

Where

must be expressed as logical conditions

New cards
9

Where

only rows for which predicate evaluates to TRUE are accepted

New cards
10

Where

Values of FALSE or UNKNOWN filtered out

New cards
11

Where

______ clause follows FROM, precedes other clauses

New cards
12

Top

Filtering in the SELECT clause by using the ___ Option

New cards
13

OFFSET-FETCH

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

New cards
14

TOP

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

New cards
15

TOP

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

New cards
16

percent

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

New cards
17

with ties

Retrieves duplicates where applicable.

New cards
18

TOP

is proprietary to Microsoft SQL Server

New cards
19

OFFSET-FETCH

is an extension to the ORDER BY clause.

New cards
20

OFFSET-FETCH

it allows filtering a requested range of rows.

New cards
21

OFFSET-FETCH

provides a mechanism for paging through results.

New cards
22

OFFSET-FETCH

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

New cards
23

OFFSET-FETCH

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

New cards
24

Offset

value must be supplied

New cards
robot