Skip to content

Instantly share code, notes, and snippets.

View Ir001's full-sized avatar
🚀
Fly to the moon

Irwan Antonio Ir001

🚀
Fly to the moon
View GitHub Profile
@Ir001
Ir001 / truncate.sql
Created June 13, 2021 07:32
How to TRUNCATE foreign table
SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table $table_name;
SET FOREIGN_KEY_CHECKS = 1;
#DWYOR
$('table').DataTable({
'fnDrawCallback': function(oSettings) {
}
});