我们有一个需求,我们需要根据 WHERE 子句将 TABLE1 的条目添加到 TABLE2 中。
我找到的唯一相关文件/博客是 https://cap.cloud.sap/docs/node.js/cds-ql#insert-as 和https://blogs.sap.com/2022/06/21/getting-started-with-cds.ql-in-nodejs-for-cap-101-on-how-to-query-data/
截至目前,我已经实现了以下查询,我正在通过 .cds 文件中定义的函数触发
const c = await INSERT.into("TABLE1").
as(SELECT.from("TABLE2").where({STATUS : 'X'}))
低于 400 错误。
{
"error": {
"code": "400",
"message": "Expected uri token 'EOF' could not be found in 'functionName();' at position 37"
}
}