From b607c951d9b7d706cbde904677d85491df2ddf36 Mon Sep 17 00:00:00 2001 From: Dhghomon Date: Thu, 19 Sep 2024 13:15:54 +0900 Subject: [PATCH] rv table name from update/upsert --- src/content/doc-surrealql/statements/update.mdx | 4 ++-- src/content/doc-surrealql/statements/upsert.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/doc-surrealql/statements/update.mdx b/src/content/doc-surrealql/statements/update.mdx index 8bfa29139..8446e83e7 100644 --- a/src/content/doc-surrealql/statements/update.mdx +++ b/src/content/doc-surrealql/statements/update.mdx @@ -351,8 +351,8 @@ The `UPDATE` statement supports bulk update, which allows multiple records to be ```surql UPDATE person CONTENT [ - {id: r"person:jaime", name: "Jaime", surname: "Morgan Hitchcock"}, - {id: "tobie", name: "Tobie", surname: "Morgan Hitchcock"}, + { id: "jaime", name: "Jaime", surname: "Morgan Hitchcock" }, + { id: "tobie", name: "Tobie", surname: "Morgan Hitchcock" }, -- ... 1000 more records ] ``` diff --git a/src/content/doc-surrealql/statements/upsert.mdx b/src/content/doc-surrealql/statements/upsert.mdx index b161ba10f..01aeffa96 100644 --- a/src/content/doc-surrealql/statements/upsert.mdx +++ b/src/content/doc-surrealql/statements/upsert.mdx @@ -187,8 +187,8 @@ The `UPSERT` statement supports bulk upsert, which allows multiple records to be ```surql UPSERT person CONTENT [ - {id: r"person:jaime", name: "Jaime", surname: "Morgan Hitchcock"}, - {id: "tobie", name: "Tobie", surname: "Morgan Hitchcock"}, + { id: "jaime", name: "Jaime", surname: "Morgan Hitchcock" }, + { id: "tobie", name: "Tobie", surname: "Morgan Hitchcock" }, -- ... 1000 more records ] ```