LIMIT Keyword in mysql select statement LIMIT keyword uses to return row specific by the total number of rows to return. >>SELECT name, age FROM user; >>SELECT name, age FROM user LIMIT 2; >>SELECT name, age FROM user LIMIT 3,2;
0 comments:
Post a Comment