i want to display data from textnews field in mysql within limited lines. can any one

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • deepakjadhav
    New Member
    • Oct 2012
    • 1

    #1

    i want to display data from textnews field in mysql within limited lines. can any one

    i want to display data from textnews field in mysql within limited lines. can any one help me. the data is in textnews field at 500 lines. i want to display only 25 lines per page. please help me
  • Luuk
    Recognized Expert Top Contributor
    • Mar 2012
    • 1043

    #2
    Look at the the LIMIT and OFFSET options of SELECT

    Comment

    • adriancs
      New Member
      • Apr 2011
      • 122

      #3
      thats right. for example:

      Code:
      select * from `tablename` limit 0,25;
      the above sql means select all rows start from row 1 to row 25.

      Comment

      Working...