I'm not sure why, but there is no Outer Joins in JMP that I can find. These are helpful if you want to filter one data table by another data table. Because of this, all I've come up with is the below script but it's very slow in large data tables (1 million+ rows). Any suggestions to improve the script would be helpful.
dt << Clear Select;
for(i=1, i <= nitems(filter_list), i++,
dt << Select Where(Column(dt, "filter_col")[] == filter_list, current selection("extend"))
);
dt << Delete Rows;