Zend查询“选择一个表并使用where子句插入另一个表”?

时间:2015-09-02 14:30:03

标签: php zend-framework

此查询正在MySql Workbench上运行,现在我需要在Zend中使用它。

INSERT new_table SELECT * from old_table WHERE date(created_time) < 2015-04-05;

1 个答案:

答案 0 :(得分:0)

您只需使用适配器的query方法即可。

// $db is your DB adapter, e.g. an instance of Zend_Db_Adapter_Mysqli
$db->query('INSERT new_table SELECT * from old_table WHERE date(created_time) < 2015-04-05');