nerdexam
Microsoft

70-457 · Question #70

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 F. SELECT StudentCode AS Code,Marks AS Value FRCM (. 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 retrieve the students who scored the highest marks for each subject along with the marks. 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

(20 responses)
  • D
    10% (2)
  • F
    75% (15)
  • G
    10% (2)
  • H
    5% (1)

Community Discussion

No community discussion yet for this question.

Full 70-457 Practice