mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-06 06:48:32 +00:00
Merge pull request #4712 from wisheth/patch-1
[sql/en] Fixing a small capitalization error
This commit is contained in:
commit
672cac8fae
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user