Microsoft
70-457 · Question #68
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid- year marks for students. The table has marks obtained by 50 students for various subjects. You need to…
The correct answer is D. SELECT StudentCode as Code. See the full explanation below for the reasoning.
Question
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid- year marks for students. The table has marks obtained by 50 students for various subjects. You need to ensure that the top half of the students arranged by their average marks must be given a rank of 1 and the remaining students must be given a rank of 2. Which Transact-SQL query should you use?
Options
- ASELECT StudentCode as Code,
- BSELECT Id, Name, Marks, DENSE_RANK () OVER (ORDER BY Marks DESC) AS Rank
- CSELECT StudentCode as Code,
- DSELECT StudentCode as Code,
- ESELECT StudentCode AS Code,Marks AS Value
- FSELECT StudentCode AS Code,Marks AS Value FRCM (
- GSELECT StudentCode AS Code,Marks AS Value FROM
- HSELECT StudentCode AS Code,Marks AS Value FROM
How the community answered
(38 responses)- B8% (3)
- C3% (1)
- D74% (28)
- F3% (1)
- H13% (5)
Community Discussion
No community discussion yet for this question.