Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
hi,how do set filter on a subquery like this.select id from job_operations where _jobid=2 and id not in (SELECT operation_id from operation_status where _proj_id=1_and _jobid=2)
Your query is correct, what's the problem?
selectid,job_id,operation_descFROM job_operationsWHERE (id not in(SELECT operation_id from operationstatus {where clause}_))i want to add a filter to the subquery. is it possible.??