SQL seulement cinq premières lignes

SELECT your_column
FROM your_table
WHERE your_condition
LIMIT 5; -- your limit of rows you want to show here
Tartaud