Windows Functions

Windows Functions

Professional Development

13 Qs

quiz-placeholder

Similar activities

Warid 125

Warid 125

Professional Development

10 Qs

résolution des conflits groupe 3

résolution des conflits groupe 3

Professional Development

10 Qs

Defence Ranks and Badges

Defence Ranks and Badges

Professional Development

10 Qs

Pengetahuan Dasar MySQL

Pengetahuan Dasar MySQL

Professional Development

10 Qs

Social Media Marketing

Social Media Marketing

Professional Development

10 Qs

Air Force Enlisted Ranks

Air Force Enlisted Ranks

6th Grade - Professional Development

10 Qs

Communication interpersonnelle

Communication interpersonnelle

Professional Development

10 Qs

Google Search Network

Google Search Network

Professional Development

8 Qs

Windows Functions

Windows Functions

Assessment

Quiz

Professional Development

Professional Development

Medium

Created by

Ivy Professional School

Used 19+ times

FREE Resource

13 questions

Show all answers

1.

OPEN ENDED QUESTION

3 mins • Ungraded

Full name

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

3 mins • Ungraded

Email ID

Evaluate responses using AI:

OFF

3.

OPEN ENDED QUESTION

3 mins • Ungraded

Student ID

Evaluate responses using AI:

OFF

4.

MULTIPLE SELECT QUESTION

3 mins • 1 pt

Which all statements are NOT true about Windows Function?

They summarizes the values in the table

They perform calculation on set of rows somehow related to current row

They create different groups and performs aggregation

They are used to find out the Rank

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

With regards to Rank and Dense Rank, which statements are true?

RANK skips the number of positions after records with the same rank number.

RANK DENSE returns position numbers and it doesn’t skip records with the same rank number

RANK & DENSE RANK are same when there is no tie

All of above

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

To narrow a window function's application to a subgroup within a data set, use __________.

PARTITION

OVER

SUBGROUP

GROUP

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

Write a query to find the subject wise Rank.

SELECT subjects, s_name, mark,

rank() OVER ( partition by subjects order by mark desc ) AS 'Rnk' FROM result;

SELECT subjects, s_name, mark , rank() OVER (order by mark asc ) AS 'Rnk' FROM result;

SELECT subjects, s_name, mark, rank() OVER ( partition by subjects) AS 'Rnk' FROM result;

SELECT subjects, s_name, mark, rank() OVER ( partition by s_name order by mark ) AS 'Rnk' FROM result;

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?