Update sql.html.markdown

Capitalization on final instance of "LIKE" was inconsistent with the standard proposed at the beginning of the article
This commit is contained in:
WISH, ETHEREAL 2023-07-18 14:45:29 -04:00 committed by GitHub
parent a597f00242
commit f7b5f742b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ UPDATE tablename1 SET fname='John' WHERE lname='Mutt';
-- Delete rows from the tablename1 table -- Delete rows from the tablename1 table
-- where the lname value begins with 'M'. -- 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 all rows from the tablename1 table, leaving the empty table.
DELETE FROM tablename1; DELETE FROM tablename1;