0
此查詢在MySql Workbench上運行,現在我需要Zend中的這個查詢。Zend查詢「選擇一個表並使用where子句插入另一個表」?
INSERT new_table SELECT * from old_table WHERE date(created_time) < 2015-04-05;
此查詢在MySql Workbench上運行,現在我需要Zend中的這個查詢。Zend查詢「選擇一個表並使用where子句插入另一個表」?
INSERT new_table SELECT * from old_table WHERE date(created_time) < 2015-04-05;
所有你需要做的只是使用你的適配器的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');
看一看這個問題,例如SQL ... http://stackoverflow.com/questions/12202376/zend-db-mysql-insert-with-select –
什麼是你的問題? –