Dai un'occhiata a questa tabella:
mysql> desc s_p;
+-------------------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------------------+------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| s_pid | int(10) unsigned | YES | MUL | NULL | |
| sm_id | int(10) unsigned | YES | MUL | NULL | |
| m_id | int(10) unsigned | YES | | NULL | |
| created | datetime | YES | | NULL | |
| s_date | datetime | YES | | NULL | |
| estimated_date | datetime | YES | MUL | NULL | |
+-------------------------+------------------+------+-----+---------+----------------+
Ora dai un'occhiata a queste domande:
mysql> select count(*) from s_p where estimated_date is null;
+----------+
| count(*) |
+----------+
| 190580 |
+----------+
1 row in set (0.05 sec)
mysql> select count(*) from s_p where estimated_date is not null;
+----------+
| count(*) |
+----------+
| 35640 |
+----------+
1 row in set (0.07 sec)
mysql> select count(*) from s_p;
+----------+
| count(*) |
+----------+
| 1524785 |
+----------+
I conteggi sopra non corrispondono. Mentre secondo la mia comprensione:
Count with IS NULL
e Count with IS NOT NULL
dovrebbero essere uguali a count quando interrogato senza la clausola where.
Qualche idea su cosa sta succedendo qui?
================================================== =
Aggiornamento il 17 febbraio 2012
Da allora, ho scoperto che molte persone si chiedono quale sia il valore di stima_data attualmente ha. Ecco la risposta:
mysql> select distinct date(estimated_date) from s_p;
+----------------------+
| date(estimated_date) |
+----------------------+
| NULL |
| 2012-02-17 |
| 2012-02-20 |
| 2012-02-21 |
| 2012-02-22 |
| 2012-02-23 |
| 2012-02-24 |
| 2012-02-27 |
| 2012-02-28 |
+----------------------+
9 rows in set (0.42 sec)
Come puoi vedere sopra stimata_data ha valori NULL o datetime validi. Non ci sono zeri o stringhe vuote "".
Questo (problema originale) può verificarsi se l'indice di stimata_data ha qualche problema?
================================================== =
Aggiornamento il 18 febbraio 2012
Ecco l'output della tabella show show:
| s_p | CREATE TABLE `s_p` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`s_id` int(10) unsigned DEFAULT NULL,
`sm_id` int(10) unsigned DEFAULT NULL,
`m_id` int(10) unsigned DEFAULT NULL,
`created` datetime DEFAULT NULL,
`estimated_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `sm_id` (`sm_id`),
KEY `estimated_date_index` (`estimated_date`) USING BTREE,
) ENGINE=InnoDB AUTO_INCREMENT=1602491 DEFAULT CHARSET=utf8 |
Ancora una volta, posso solo sospettare l'indice su stimata_data qui.
Inoltre, la versione del server mysql è 5.5.12.
select count(*)
e no select count(estimated_date)
? Questi due restituiranno risultati diversi poiché i NULL vengono ignorati se questa è l'unica cosa che stai contando.
SELECT COUNT(*),SUM(CASE WHEN estimated_date IS NULL THEN 1 ELSE 0 END),SUM(CASE WHEN estimated_date IS NOT NULL THEN 1 ELSE 0 END) from s_p
- che dovrebbe ottenere tutti i conteggi in una volta sola.
CHECK TABLE
? Considerando il numero di righe complete selvaggiamente più grande, immagino che da DELETE
qualche parte sia diventato pazzo.