Jorge Armas
Jorge Armas

Reputation: 11

How to make a SELECT statement show more than 1000 records in MYSQL?

Hello I would like to know How to display more than 1000 registers when I`m using a SELECT statement in MYSQL

Upvotes: 1

Views: 7174

Answers (2)

Dave Stokes
Dave Stokes

Reputation: 823

Check your configuration file for the --i-am-a-dummy option. You are not really a dummy but it keeps you from shooting yourself in the foot with things like long running queries.

Upvotes: 0

Uueerdo
Uueerdo

Reputation: 15941

Assuming you're using MySQL Workbench...

Edit->Preferences, SQL Editor->SQL Execution Uncheck "Limit Rows", or set "Limit Rows Count" higher

Upvotes: 3

Related Questions