Saving all output to "!!{outputDirectory}!!/udf_in.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/udf_in.q >>> SELECT 1 IN (1, 2, 3), 4 IN (1, 2, 3), array(1,2,3) IN (array(1,2,3)), "bee" IN("aee", "bee", "cee", 1), "dee" IN("aee", "bee", "cee"), 1 = 1 IN(true, false), true IN (true, false) = true, 1 IN (1, 2, 3) OR false IN(false), NULL IN (1, 2, 3), 4 IN (1, 2, 3, NULL), (1+3) IN (5, 6, (1+2) + 1) FROM src LIMIT 1; '_c0','_c1','_c2','_c3','_c4','_c5','_c6','_c7','_c8','_c9','_c10' 'true','false','true','true','false','true','true','true','','','true' 1 row selected >>> >>> SELECT key FROM src WHERE key IN ("238", 86); 'key' '238' '86' '238' 3 rows selected >>> !record