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

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 に答える
0

現在は結合()されています

ただし、次の 2 つの場合は機能しません。

  • 3 つ以上の SELECT

  • 注文

于 2015-02-05T09:40:37.770 に答える