in_immediate_subquery.sql 228 B

123456
  1. /* postgres can not */
  2. use plato;
  3. select * from Input4 where subkey not in (select key || "0" from Input4) order by key,subkey;
  4. select * from Input4 where subkey in compact(select key || "0" from Input4) order by key,subkey;