Sometimes your RDBMS does not allow You certain changes like updating a table without using a WHERE that uses a key column.
When You are really sure what You want to do:
SET SQL_SAFE_UPDATES = 0;
The Adventures of Dash Daring in Code & Music & Business
Sometimes your RDBMS does not allow You certain changes like updating a table without using a WHERE that uses a key column.
When You are really sure what You want to do:
SET SQL_SAFE_UPDATES = 0;