blob: ed1d8077cdfaa360704afa84c38f7f8f67cdd7f1 (
plain) (
blame)
1
2
|
PRAGMA DisableSimpleColumns;
select count(*) from (select cast(value as int) as v1, subkey from plato.Input1) as a full join (select cast(value as int) as v2, subkey from plato.Input1) as b on a.v1 = b.v2;
|