2016-05-13 9 views

Antwort

0

Sie können auch für jede Spalten Dies wird auch Ihnen geben die Anzahl der Null-Felder

SELECT 
    SUM(IF(columnA is NULL,1,0)) as canulls, 
    SUM(IF(columnB is NULL,1,0)) as cbnulls 
FROM table; 

tun.