此查询正在MySql Workbench上运行,现在我需要在Zend中使用它。
INSERT new_table SELECT * from old_table WHERE date(created_time) < 2015-04-05;
答案 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');