Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

25. How to retrieve only the desired results from mysql select statement results (limit the results)? 

1. SELECT * FROMTableNameLIMIT10FROM TableName LIMIT10;

2. Ex : mysql> select * from mysql.general_log LIMIT 10;