On 09/08/2013 07:12 PM, janek12@xxxxxx
wrote:
How far does this get you? insert into t_temp_fts values('rob', 51), ('rob', 71), ('rob', 81), ('rob', 91); insert into t_temp_fts values('jon', 51), ('jon', 71), ('jon', 81), ('jon', 91); SELECT distinct usern, (select count(*) from t_temp_fts i where o.usern = i.usern and lev >= 50 AND lev < 70) as a, (select count(*) from t_temp_fts i where o.usern = i.usern and lev >= 70 AND lev < 80)as b , (select count(*) from t_temp_fts i where o.usern = i.usern and lev >= 80 AND lev < 90)as c , (select count(*) from t_temp_fts i where o.usern = i.usern and lev > 90) as d from t_temp_fts o ; usern | a | b | c | d -------+---+---+---+--- jon | 1 | 1 | 1 | 1 rob | 1 | 1 | 1 | 1 (2 rows) |