Pregunta de entrevista de PwC

how to retrieve first five rows from database.

Respuestas de entrevistas

Anónimo

19 jun 2017

select top 5* from table;

Anónimo

4 ago 2020

SELECT *FROM table_name ORDER BY column_name_id LIMIT 5;