如何在 Zend DB 表上执行此操作?喜欢,
UPDATE location AS main
SET main.parent_location = 28,
main.description = CONCAT(
(SELECT sub.description FROM wms_location AS sub WHERE sub.id_location=28),
main.designation
)
WHERE main.id_location in (11, 14);
这甚至可能吗?