create table test(variable varchar(20), col001 real, col002 real);
insert into test values('col001',1,2);
insert into test values('col002'3,4);
Now, I'd like to query this to get a submatrix:
select variable, col001, col002
from test
where strpos("col001,col002", variable) > 0
Why doesn't this work?