From 9ae23985e47b6a570fb4ddcc7adb15ceb8a39fe3 Mon Sep 17 00:00:00 2001 From: Medium Fries Date: Wed, 3 Oct 2018 18:08:11 -0700 Subject: [PATCH] db: fixed unclear example --- cst363/lec/lec8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cst363/lec/lec8.md b/cst363/lec/lec8.md index 0c065aa..328a838 100644 --- a/cst363/lec/lec8.md +++ b/cst363/lec/lec8.md @@ -36,7 +36,7 @@ Caution: the delete operation also accepts tables as valid arguments so a query ### Updating entries ``` -update table set attribute=123 where def='abc'; +update tableName set attribute=123 where def='abc'; ``` The above updates an attribute based on the condiftion `where def='abc'`.