I have a table like 'my table' it has only one column 'mycolumn' varchar(10). I have two records in that table. while i am trying to delete that table, the error is coming like
'data too long for column for 'x' at row 1'
how to resolve this. any idea, thanks in advance.
ENGINE is InnoDB and CHARSET is latin1.
the column varchar limit is 10, and i am not trying to insert any data, i am just deleting the data which is already exists in that table.
while deleting it showing the above mentioned error.