Code:
create table StringMatchCache ( str_a text not null, str_b text not null, result double not null default 0, unique( str_a, str_b ) );
Die Abfrage wäre dann:
Code:
select result from StringMatchCache where str_a="a" and str_b="b" or str_b="a" and str_a="b";
Einen Kommentar schreiben: