diff options
author | Marcel Ribeiro-Dantas <ribeirodantasdm@gmail.com> | 2023-07-22 00:30:12 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 00:30:12 -0300 |
commit | 672cac8fae85f7dc4b34e801acc15d2fd262616c (patch) | |
tree | 2908ad45f6f3e8d8896e084bf0a6d91b84355ead | |
parent | a597f002424d2d95c06b62b0c49d6bf152ea7f5b (diff) | |
parent | f7b5f742b3abae10dda5d8df3f021960ea2e0eed (diff) |
Merge pull request #4712 from wisheth/patch-1
[sql/en] Fixing a small capitalization error
-rw-r--r-- | sql.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql.html.markdown b/sql.html.markdown index 685e522d..834cf00b 100644 --- a/sql.html.markdown +++ b/sql.html.markdown @@ -95,7 +95,7 @@ UPDATE tablename1 SET fname='John' WHERE lname='Mutt'; -- Delete rows from the tablename1 table -- where the lname value begins with 'M'. -DELETE FROM tablename1 WHERE lname like 'M%'; +DELETE FROM tablename1 WHERE lname LIKE 'M%'; -- Delete all rows from the tablename1 table, leaving the empty table. DELETE FROM tablename1; |