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'`.