选择时,Rose DB子选择(嵌套查询)

时间:2014-06-17 16:35:24

标签: mysql sql rose-db-object

我正在尝试运行一个查询,其中包含一个子选择。我已经设置了Manager方法,一切正常。唯一的问题是我不知道如何继续这个查询:

SELECT * FROM tableA WHERE 
          name = 'Me' AND 
          class='Tester' AND 
          ( ( Department IN ( SELECT Department FROM 
                                     tableB WHERE 
                                     leader = 'Joe')  
                             OR 
              Leader  in ('','all')  )
         );

重要的是要记住tableA和tableB是2个不同的表。截至目前,我已经达成了这个问题:

my @leader = ('','all');

DB::tableA::Manager->get_tableA ( with_object => ['tableB'] , 
             query => [ name => 'Me',
                        class => 'Tester',
                        OR => [
                              leader => \@leader,
                              Department => [*** this is
     where i have to make the sub select. 
     Dont know how though **** ]
          ]
        ], 
debug => 1);

请帮助,以便我可以将该子查询添加到此主查询

提前致谢

1 个答案:

答案 0 :(得分:0)

您可以使用clauses函数在查询的WHERE部分中包含任意子句。

看起来像这样。

DB::tableA::Manager->get_tableA ( with_object => ['tableB'] , 
  query => [ 
    name => 'Me',
    class => 'Tester',
  ],
  clauses => ["( Department IN ( SELECT Department FROM tableB WHERE leader = 'Joe' ) OR Leader  in ('','all') )"
);

CPAN: Rose::DB::Object::QueryBuilder, Functions

相关问题