pg-promise:使用 pgp.helpers.update 更新带有数组文本列的行
pg-promise: Updating row with array text column with pgp.helpers.update
我正在尝试更新文本数组列:
var data = [];
for (const tag of tags) {
var tmp = {'rids': [rid], 'id': tag.id, 'uid' : uid};
data.push(tmp);
}
const condition = pgp.as.format(' WHERE CAST(v.uid AS INTEGER) = t.uid and v.id = t.id');
const insertQuery = pgp.helpers.update(data, ['?id', '?uid', 'rids'], 'table_tags') + condition + ' ' + 'RETURNING t.tag';
return db.any(insertQuery);
这有效,但它替换了列值。
如何保留当前列值并追加新值?
像这样:{somevalue, someothervalue, newinsertedvalue}
而不是:{newinsertedvalue}
这是我在 php drupal 项目中使用的查询:
db_query("UPDATE table_tags set rids = rids || (:rid) WHERE uid = :uid and id = :id", array(':rid' => '{'.$rid.'}', ':uid' => $uid, ':id' => $tag_id));
您的值串联逻辑是一种特殊情况,默认情况下不支持 update
。您将不得不使用动态部分静态编写查询 - 值,通过 helpers.values 函数生成。
const values = helpers.values(data, ['id', 'uid', 'rids']);
const query = `UPDATE table_tags AS t SET rids = t.rids || v.rids FROM
(VALUES${values}) as v(id, uid, rids)
WHERE CAST(v.uid AS INTEGER) = t.uid AND v.id = t.id RETURNING t.tag`.
我正在尝试更新文本数组列:
var data = [];
for (const tag of tags) {
var tmp = {'rids': [rid], 'id': tag.id, 'uid' : uid};
data.push(tmp);
}
const condition = pgp.as.format(' WHERE CAST(v.uid AS INTEGER) = t.uid and v.id = t.id');
const insertQuery = pgp.helpers.update(data, ['?id', '?uid', 'rids'], 'table_tags') + condition + ' ' + 'RETURNING t.tag';
return db.any(insertQuery);
这有效,但它替换了列值。
如何保留当前列值并追加新值?
像这样:{somevalue, someothervalue, newinsertedvalue}
而不是:{newinsertedvalue}
这是我在 php drupal 项目中使用的查询:
db_query("UPDATE table_tags set rids = rids || (:rid) WHERE uid = :uid and id = :id", array(':rid' => '{'.$rid.'}', ':uid' => $uid, ':id' => $tag_id));
您的值串联逻辑是一种特殊情况,默认情况下不支持 update
。您将不得不使用动态部分静态编写查询 - 值,通过 helpers.values 函数生成。
const values = helpers.values(data, ['id', 'uid', 'rids']);
const query = `UPDATE table_tags AS t SET rids = t.rids || v.rids FROM
(VALUES${values}) as v(id, uid, rids)
WHERE CAST(v.uid AS INTEGER) = t.uid AND v.id = t.id RETURNING t.tag`.