I see that I have this code at the end of a table that I want to insert on my db :
/*!40000 ALTER TABLE `to_import` ENABLE KEYS */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
When I try to execute the query on phpMyAdmin, I get #1231 - Variable 'sql_mode' can't be set to the value of 'NULL'
and I don't understand why.
So, can I remove that /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
? Is it so important? Tried to learn about this, but in fact I don't understand what it do.