Reverse Snowflake Joins 是一个 SQL 的 SELECT 语句解析工具并生成相应的图表。
例如下面的 SQL 语句 select * from a where a.a in (select * from t_a) and a.b in (select * from t_b) and a.c in (select * from t_c)
select * from a where a.a in (select * from t_a) and a.b in (select * from t_b) and a.c in (select * from t_c)
生成的图形如下: