From f7b5f742b3abae10dda5d8df3f021960ea2e0eed Mon Sep 17 00:00:00 2001 From: "WISH, ETHEREAL" Date: Tue, 18 Jul 2023 14:45:29 -0400 Subject: Update sql.html.markdown Capitalization on final instance of "LIKE" was inconsistent with the standard proposed at the beginning of the article --- sql.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql.html.markdown') 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; -- cgit v1.2.3