1
("SELECT * FROM (
    select id, title, report_date, report_file, company,  'company' as report_type from rs_company_report
    union
    select id, title, report_date, report_file, company, 'sector' as report_type from rs_sector_report
    union
    select id, title, report_date, report_file, company, 'morning' as report_type from rs_morning_report) as company_reports where company LIKE '%1%' order by title ");

如何将此查询转换为 zend tablegateway 格式。

4

2 回答 2

0

它现在有 combine()

但这对这两个不起作用:

  • 多于两个 SELECT 的

  • 命令

于 2015-02-05T09:40:37.770 回答
0

到目前为止,Zend2 似乎没有提供任何 UNION 支持。

http://framework.zend.com/manual/2.1/en/modules/zend.db.sql.html#zend-db-sql-select

于 2013-04-11T11:58:54.380 回答