문제

I'm trying to import a csv file to mysql, everything is working fine except i'm missing some rows. Once the import is done I apply the table and it gives me an error "33 errors saving changes to table..."

I have 1636 rows, when i click apply the table is imported and I can select from it except it's missing 33 rows, the error message doesn't tell me what's wrong.

도움이 되었습니까?

해결책

You can use both SHOW ERRORS and SHOW WARNINGS to see what goes wrong when running your queries.

For example,

SHOW ERRORS;

Would show the errors for the last batch of SQL statements you executed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top