5
Quali sono le differenze tra i comandi EXPLAIN e DESC in MySQL?Spiega le anomalie Descs in mysql
Quali sono le differenze tra i comandi EXPLAIN e DESC in MySQL?Spiega le anomalie Descs in mysql
È anche possibile utilizzare EXPLAIN sul nome di una tabella, nel qual caso si comporterà esattamente come DESCRIVERE.
EXPLAIN SELECT *
FROM `customer`
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE customer ALL NULL NULL NULL NULL 2
vs.
DESCRIBE `customer`
Field Type Null Key Default Extra
CustomerID varchar(2) NO
Cx varchar(3) NO