在Jupyter Notebook中,我可以使用以下命令自动执行当前单元格下方的所有单元格。
delete from t
where t.col3 is null and
exists (select 1 from t t2 where t2.col2 = t.col2 and t2.col3 is not null);
但是,这似乎不适用于JupyterLab。如何为JupyterLab进行这项工作? (我想在单击按钮后自动执行下面的所有单元格。其原始代码发布在这里:IPython - Run all cells below from a widget)