In my workflow, I'm needing to join a number of tables. These tables though are remarkably large > 50 GB. My workflow is not efficient when I allow both tables to fully load then join on a common field. In table A, I have parameters that limit the size of the table and would then like to join the output with table B. This would typically happen in the WHERE clause of the SQL. This clause limiting having to fully load Table B. How can I leverage the output of Table A to pass into Table B? Table A will produce a list of values that I could potentially pass into Table B, then join the two tables.