LIMIT 5 OFFSET 3 : Limits « Select Clause « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » Select Clause » Limits 
LIMIT 5 OFFSET 3
      
mysql>
mysql>
mysql> CREATE TABLE EmployeeS(
    ->          EmployeeNO       INTEGER      NOT NULL,
    ->          NAME           CHAR(15)     NOT NULL,
    ->          INITIALS       CHAR(3)      NOT NULL,
    ->          BIRTH_DATE     DATE                 ,
    ->          SEX            CHAR(1)      NOT NULL,
    ->          JOINED         SMALLINT     NOT NULL,
    ->          STREET         VARCHAR(30)  NOT NULL,
    ->          HOUSENO        CHAR(4)              ,
    ->          POSTCODE       CHAR(6)              ,
    ->          TOWN           VARCHAR(30)  NOT NULL,
    ->          PHONENO        CHAR(13)             ,
    ->          LEAGUENO       CHAR(4)              ,
    ->          PRIMARY KEY    (EmployeeNO)           );

mysql> INSERT INTO EmployeeS VALUES (2'Jack', 'R''1948-09-01', 'M'1975'Stoney Road','43', '3575NH', 'Stratford', '070-237893', '2411');
mysql> INSERT INTO EmployeeS VALUES (6'Link', 'R''1964-06-25', 'M'1977'Street1','80', '1234KK', 'Stratford', '070-476537', '8467');
mysql> INSERT INTO EmployeeS VALUES (7'Wise', 'GWS', '1963-05-11', 'M'1981'First Way','39', '9758VB', 'Stratford', '070-347689', NULL);
mysql> INSERT INTO EmployeeS VALUES (8'Mary', 'B''1962-07-08', 'F'1980'Station Road','4', '6584WO', 'Inglewood', '070-458458', '2983');
mysql> INSERT INTO EmployeeS VALUES (27'Smith', 'DD', '1964-12-28', 'F'1983'Street2','804', '8457DK', 'Eltham', '079-234857', '2513');
mysql> INSERT INTO EmployeeS VALUES (28'Smith', 'C''1963-06-22', 'F'1983'Old Main Road','10', '1294QK', 'Midhurst', '010-659599', NULL);
mysql> INSERT INTO EmployeeS VALUES (39'Bishop', 'D''1956-10-29', 'M'1980'Eaton Square','78', '9629CD', 'Stratford', '070-393435', NULL);
mysql> INSERT INTO EmployeeS VALUES (44'Baker', 'E''1963-01-09', 'M'1980'Lewis Street','23', '4444LJ', 'Inglewood', '070-368753', '1124');
mysql> INSERT INTO EmployeeS VALUES (57'Brown', 'M''1971-08-17', 'M'1985'First Way','16', '4377CB', 'Stratford', '070-473458', '6409');
mysql> INSERT INTO EmployeeS VALUES (83'Hope', 'PK', '1956-11-11', 'M'1982'Main Road','16A', '1812UP', 'Stratford', '070-353548', '1608');
mysql> INSERT INTO EmployeeS VALUES (95'Miller', 'P''1963-05-14', 'M'1972'High Street','33A', '5746OP', 'Douglas', '070-867564', NULL);
mysql> INSERT INTO EmployeeS VALUES (100'Link', 'P''1963-02-28', 'M'1979'Street1','80', '6494SG', 'Stratford', '070-494593', '6524');
mysql> INSERT INTO EmployeeS VALUES (104'Jane', 'D''1970-05-10', 'F'1984'Stout Street','65', '9437AO', 'Eltham', '079-987571', '7060');
mysql> INSERT INTO EmployeeS VALUES (112'Bailey', 'IP', '1963-10-01', 'F'1984'Vixen Road','8', '6392LK', 'Plymouth', '010-548745', '1319');
mysql>
mysql>
mysql> SELECT   EmployeeNO, NAME
    -> FROM     EmployeeS
    -> ORDER BY EmployeeNO ASC
    -> LIMIT    OFFSET 3;
+------------+--------+
| EmployeeNO | NAME   |
+------------+--------+
|          | Mary   |
|         27 | Smith  |
|         28 | Smith  |
|         39 | Bishop |
|         44 | Baker  |
+------------+--------+
rows in set (0.00 sec)

mysql>
mysql> drop table Employees;
Query OK, rows affected (0.00 sec)

mysql>

   
    
    
    
    
    
  
Related examples in the same category
1.Limit the query results: Get 3 Most Expensive Products
2.Use LIMIT in SELECT
3.Use LIMIT
4.Another ORDER BY and limit
5.Simple LIMIT
6.Retrieving the Top Five Students
7.ORDER and limit
8.Limits and order
9.Scrolling through the entire product table four records at a time
10.Determining the Number of Records Suppressed by LIMIT (SQL_CALC_FOUND_ROWS, FOUND_ROWS)
11.Limiting a Selection Using LIMIT
12.Use ORDER BY to sort the result set. Then you can use LIMIT to find smallest and largest values.
13.Order the rows with the largest SUM( ) values first and use LIMIT to select the first record
14.A DELETE statement can be qualified by using an ORDER BY and a LIMIT clause
15.The LIMIT clause takes two arguments, as the following syntax shows: LIMIT [,]
16.SELECT statement includes a LIMIT clause that specifies an offset value of 3 and a row count value of 4
17.WHERE clause can include additional logical operators and expressions that further limit the results returned
18.Limit to first three columns
19.Delete with order by and limit clause
20.Pulling a Section from the Middle of a Result Set
21.Tell MySQL what offset to use, from which result to start limiting.
22.The default offset is 0, so by specifying an offset of 1, you're taking the second record.
23.Selecting Records from the Beginning or End of a Result Set
24.Processing the First or Last n Records
25.Limiting the Number of Results
26.But LIMIT allows you to return only that record
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.