Which Of The Following Query Retrieves Top 30 Percent Records #72
Which of the following query retrieves top 30 percent records with all attributes of a table named student?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Clause, Operators and Keywords - SQL Select Top Clause - Quiz No.1.
Which of the following query retrieves top 30 percent records with all attributes of a table named student?
Select top 30 percentage * from student;
Select top percent 30 * from student;
Select 30 percent * from student;
Select top 30 percent * from student;