HaritosPJ
Se seu BD for Oracle select * from tabela where rownum < 5;
Caso seja SQL SERVER select top 4 from tabela;
MackjPJ
Coloque qual o que está dando!! 
laurinha2004PJ
o erro é o seguinte:
Erro de sintaxe na clausula from…
to usando o access…e tentei no firebird tbem…alguem poderia me dizer como ficaria no access e no firebird?
laurinha2004PJ
consegui arrumar no firebird:
Firebird select first X skip Y campo1, campo2, campoN from nome_da_tabela
X = quantidade
Y = início
no lugar dos campos você pode usar asterístico logicamente
select first 10 skip 5 * from tabela