Not so much a question but a statement of my experience with DOMO
I am not a SQL person (if that is a thing). I had only been using SQL to join datasets where ETL would run into the 10 000 repeats limit that would prevent it from running a Left Join.
I later realised that you cna go around the 10000 limit by using a Right Join but at that stage I already had some dataflows using SQL to do some joints.
In an attempt to see if I could speed up some dataflows (or series of dataflows) I tried right joining instead of SQL and the difference quite remarkables.
1 data set went from 22min to 3 min, another from 3 min to 40 sec.
I would recommend trying this to anyone looking at reducing processign times, or just normal practice.