Query Limits and Timeouts
SELECT ... LIMIT row_count
OR
SELECT ... LIMIT OFFSET, row_count
OR
SELECT ... LIMIT row_count OFFSET OFFSETSELECT ... LIMIT ROWS EXAMINED rows_limit;sql_safe_updates
SET @@SQL_SAFE_UPDATES=1
UPDATE tbl_name SET not_key_column=val;
-> ERROR 1175 (HY000): You are using safe update mode
and you tried to update a table without a WHERE that uses a KEY columnsql_select_limit
max_join_size
max_statement_time
See Also
Last updated
Was this helpful?

