SQL with Jupyter Notebook Tutorial

28 / 61

Inline SELECT

In this method, a column of a 'select' itself is a result of another 'select' query.

%%sql
select e.*,(select d.depcity from deptt_<<your lab username>> d where d.depid = e.depid) dep_city from emp_<<your lab username>> e;

No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...