Comment by wvbdmp

Comment by wvbdmp 10 hours ago

2 replies

No, sorry, you’re certainly correct, I just meant that any subqueries are generally crazy verbose. And then you usually want additional Where clauses or even Joins in there, and it starts to stop looking like a Where clause, so I’m often happy when I can push that logic into From.

Sesse__ 10 hours ago

Yes, I would certainly prefer if you could write

SELECT * FROM t1 SEMIJOIN t2 USING (x);

although it creates some extra problems for the join optimizer.

  • Little_Kitty 8 hours ago

    It's great being able to use an any join (and the counterpart anti join) in Clickhouse to deal with these operations.