PwC Interview Question

how to retrieve first five rows from database.

Interview Answers

Anonymous

Jun 19, 2017

select top 5* from table;

Anonymous

Aug 4, 2020

SELECT *FROM table_name ORDER BY column_name_id LIMIT 5;