How do you retrieve a sample of 'n' rows in random without any filterting (where) conditions?

Showing Answers 1 - 6 of 6 Answers

xyz

  • Aug 13th, 2007
 

We write the query as follows:

SELECT * from table_name
fetch first n rows only

where n is an integer value.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions