Answers for "Limit in access query"

SQL
0

Limit in access query

There is no LIMIT keyword in Access (if you use the JET engine). You can use TOP x to give the first x results. Usage:
select Top 5 * from table_name order by column_name
Posted by: Guest on January-19-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language