Highest value in column price
is 165990.00 and lowest NULL (column has nullable options on) so i am in range.
I want change datetype (decimal 15,2 to 6,2) in my mysql table but i get this error:
1264 - Out of range value for column 'price' at row 534
How i can know which row it is? I if look to row with id 534 it looks ok (price = 2000.00)
EDIT:
Ok I can order tablo
by price
and keep looking but what means row 534
? How i can find exactly that row?
Query:
ALTER TABLE `tablo` CHANGE `price` `price` DECIMAL( 6, 2 ) NULL DEFAULT NULL