JupyterLab:运行下面的所有单元格

时间:2018-11-08 19:14:07

标签: python python-3.x jupyter-lab

在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

1 个答案:

答案 0 :(得分:2)

它是内置的。点击左上角的运行菜单,然后选择"Run Selected Cell and All Below".

enter image description here