Question d’entretien chez PwC

how to retrieve first five rows from database.

Réponses aux questions d'entretien

Utilisateur anonyme

19 juin 2017

select top 5* from table;

Utilisateur anonyme

4 août 2020

SELECT *FROM table_name ORDER BY column_name_id LIMIT 5;