Textbook Exercise-G7 - M5
Textbook Exercise-G7 - M5
1. Insert Values
2. Wildcard Pattern matching
3. Update Set
4. Read Select
5. \ Escape character
Multiple choice questions
1. How can you remove a record with the name “John” from the
person's table?
DELETE FROM persons WHERE name=’John’;
4. What will happen if you do not use the WHERE condition with
delete statement?
The whole table data will be deleted.
● INSERT
● SELECT
● UPDATE
● DELETE