I have the following raw query which moves items from a shopping cart to an order table:
insert into webshop_order_item (
order_id,
product_id,
count
)
select
1,
product_id,
count
from
webshop_cart
I am using the Zend DB for all my modeling. I was wondering if there is a way of achieving the goal of the above query without having to use a raw query?