
- Learn MySQL
- MySQL - Home
- MySQL - Introduction
- MySQL - Installation
- MySQL - Administration
- MySQL - PHP Syntax
- MySQL - Connection
- MySQL - Create Database
- MySQL - Drop Database
- MySQL - Select Database
- MySQL - Data Types
- MySQL - Create Tables
- MySQL - Drop Tables
- MySQL - Insert Query
- MySQL - Select Query
- MySQL - Where Clause
- MySQL - Update Query
- MySQL - Delete Query
- MySQL - Like Clause
- MySQL - Sorting Results
- MySQL - Using Join
- MySQL - NULL Values
- MySQL - Regexps
- MySQL - Transactions
- MySQL - Alter Command
- MySQL - Indexes
- MySQL - Temporary Tables
- MySQL - Clone Tables
- MySQL - Database Info
- MySQL - Using Sequences
- MySQL - Handling Duplicates
- MySQL - SQL Injection
- MySQL - Database Export
- MySQL - Database Import
How to simulate the LIMIT MySQL clause with an Access database?
In Microsoft Access, you can use TOP instead of LIMIT. Let us first create a −
Insert some records in the table using insert command −
Following is the query to simulate the LIMIT MySQL clause with an Access database −
After clicking Run, you will get the desired output −
In MySQL, to get top 5 values, you need to use LIMIT 5 −
- Related Articles
- How Can we use MySQL DISTINCT clause with WHERE and LIMIT clause?
- How can we simulate the MySQL INTERSECT query having WHERE clause?
- MySQL LIMIT clause equivalent for SQL SERVER?
- How to simulate normal distribution for a fixed limit in R?
- How can I simulate an array variable in MySQL?
- How to use MySQL VIEW with WHERE clause?
- How to use MySQL Date functions with WHERE clause?
- How to limit Database Resources per Session in Oracle?
- How to connect hibernate with MySQL Database?
- How can we simulate the MySQL INTERSECT query?
- How can we simulate the MySQL MINUS query?
- Access to the Password Database in Python
- Access to the Group Database in Python
- How to simulate a click with JavaScript ?
- How MySQL LEFT JOIN can be used to simulate the MySQL MINUS query?

Advertisements