Menu

#213 support LIMIT syntax

Candidates
open
nobody
Evol (198)
2
2016-07-06
2014-06-22
PAscal
No

support for LIMIT [offset,] lines

Discussion

  • PAscal

    PAscal - 2014-06-23

    Exemple:

    SELECT
    *
    FROM
    categories
    INNER JOIN products
    ON categories.id_cat = products.id_cat
    LIMIT 0,10


    And Designer transform it to:

    SELECT
    *
    FROM
    categories
    INNER JOIN products
    ON categories.id_cat = products.id_cat,
    LIMIT 0,
    10

     
  • PAscal

    PAscal - 2016-02-25
    • Milestone: not planned --> Candidates
     
  • PAscal

    PAscal - 2016-03-20

    also reported in forum

    SELECT ...
    ORDER BY ... DESC
    LIMIT ...

     

    Last edit: PAscal 2016-03-20
  • PAscal

    PAscal - 2016-07-06
    • priority: --> 2
     

Log in to post a comment.