First time to ask a question. Will do my best to follow the tips:
UPDATE albums
SET release_d = 1800
WHERE release_d < 1980;
or
UPDATE albums
SET release_d = '1800'
WHERE release_d <= '1980';
I receive the error exactly as this:
Out of range value for column 'release_d'
at row 2
I just don't see it. Using Sequel Pro, MySQL 5
.
Trying to change the year of the release date.
The possible answers found were far too complex for me.
Thanks for the kindness.