diff --git a/website/docs/getting-started/tutorials/the-basics/work-with-data-in-ui.md b/website/docs/getting-started/tutorials/the-basics/work-with-data-in-ui.md index e9c392a156..4a23c36e07 100644 --- a/website/docs/getting-started/tutorials/the-basics/work-with-data-in-ui.md +++ b/website/docs/getting-started/tutorials/the-basics/work-with-data-in-ui.md @@ -58,7 +58,7 @@ This tutorial takes you through the process of viewing and editing individual re 4. Paste the below SQL update command in the query editor to update the `users` table in the database with the details modified in the Form. ```sql - UPDATE users + UPDATE public."users" SET name = {{nameInput.text}}, dob = {{dobInput.selectedDate}} WHERE id = {{usersTable.selectedRow.id}}