Загрузка данных


CREATE TABLE IF NOT EXISTS `systems` (
  `tracker` int(11) NOT NULL,
  `pid` int(11) DEFAULT NULL,
  `status` int(11) DEFAULT NULL,
  `control` varchar(255) DEFAULT NULL,
  `dbtotal` int(11) DEFAULT NULL,
  `tabletotal` int(11) DEFAULT NULL,
  `columntotal` int(11) DEFAULT NULL,
  `dbdone` int(11) DEFAULT NULL,
  `tabledone` int(11) DEFAULT NULL,
  `columndone` int(11) DEFAULT NULL,
  `updated` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`tracker`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;