$db->delete("table_users", ['id' => '32']);
function($table, array $where = NULL, bool $ignore = false)
{
$cfg = \is_array($table) ? $table : [
'tables' => [$table],
'where' => $where,
'ignore' => $ignore
];
$cfg['kind'] = 'DELETE';
return $this->_exec($cfg);
}