2017-12-05 1 views

Antwort

1

length() in den Sinn kommt:

select length(col), count(*) 
from t 
where col is not null 
group by length(col) 
order by length(col); 
+0

Danke, das versucht nun, – dahui

Verwandte Themen