@Teju said:
Sì, prova. Codice e dump sql, magari c'è un qualche caso particolare... Boh! ^^
Ecco qui l'intero codice che viene fuori se faccio esporta la tabella come sql
-- phpMyAdmin SQL Dump
-- version 2.11.11.3
--
-- Host: localhost
-- Generato il: 08 Ago, 2012 at 07:30 PM
-- Versione MySQL: 5.1.58
-- Versione PHP: 5.2.17
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `my_totalracingsim`
--
-- --------------------------------------------------------
--
-- Struttura della tabella `statistiche`
--
CREATE TABLE IF NOT EXISTS `statistiche` (
`id` int(50) NOT NULL AUTO_INCREMENT,
`pilota` text NOT NULL,
`nazione` text NOT NULL,
`vittorie` decimal(10,0) NOT NULL,
`pole` decimal(10,0) NOT NULL,
`podi` decimal(10,0) NOT NULL,
`giri_v` decimal(10,0) NOT NULL,
`punti` decimal(10,0) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=528 ;
--
-- Dump dei dati per la tabella `statistiche`
--
INSERT INTO `statistiche` (`id`, `pilota`, `nazione`, `vittorie`, `pole`, `podi`, `giri_v`, `punti`) VALUES
(480, 'Michael Francesconi', 'Italy', 9, 4, 15, 6, 930),
(481, 'Alex Piccolo', 'Italy', 6, 3, 12, 5, 680),
(482, 'Kristian Francesconi', 'Italy', 3, 8, 6, 7, 580),
(483, 'Emanuele Mascetti', 'Italy', 3, 3, 10, 5, 490),
(484, 'Claudio Boggio', 'Italy', 2, 4, 9, 1, 410),
(485, 'Giorgos Prevezanos', 'Greece', 2, 1, 13, 3, 400),
(486, 'Fabio Cangioli', 'Italy', 2, 1, 10, 4, 370),
(487, 'Pasquale Nese', 'Italy', 3, 1, 10, 5, 340),
(488, 'Andrea Romeo', 'Italy', 2, 2, 6, 3, 310),
(489, 'Gabriele De Angelis', 'Italy', 2, 0, 6, 0, 220),
(490, 'Mario Mazzelli', 'Italy', 2, 0, 8, 1, 220),
(491, 'Vittorio Scalet', 'Italy', 2, 1, 6, 0, 250),
(492, 'Alessio Bertani', 'Italy', 1, 1, 1, 1, 110),
(494, 'Simone Porcu', 'Italy', 1, 0, 2, 0, 90),
(503, 'Eros Masciulli', 'Italy', 1, 0, 1, 1, 80),
(504, 'Alessio Lucchesi', 'Italy', 1, 0, 1, 0, 70),
(505, 'Andrea Danese', 'Italy', 1, 0, 1, 0, 70),
(506, 'Alessandro Prosperi', 'Italy', 0, 0, 2, 0, 40),
(507, 'Federico Mascetti', 'Italy', 0, 0, 2, 0, 40),
(508, 'Johnnj Piccolo', 'Italy', 0, 0, 2, 0, 40),
(509, 'Vito Martino', 'Italy', 0, 0, 2, 0, 40),
(510, 'Giovanni Bernardi', 'Italy', 0, 0, 1, 0, 20),
(513, 'Pino Galota', 'Italy', 0, 0, 1, 0, 20),
(514, 'Davide De Poli', 'Italy', 0, 1, 0, 0, 30),
(519, 'Luca Villa', 'Italy', 3, 3, 6, 5, 0),
(520, 'Alessandro Rizzi', 'Italy', 1, 0, 1, 0, 0),
(521, 'Samuele Di Silvestro', 'Italy', 0, 0, 1, 0, 0),
(522, 'Luigi Fontana', 'Italy', 0, 0, 1, 0, 0),
(527, 'Luca Radaelli', 'Italy', 1, 0, 4, 0, 0);