how would u only have the field “name” from the table “country” that starts with the letter “D”
SELECT name
FROM country
WHERE name LIKE “D%”
how can you insert into a table
INSERT INTO table (field1, field2)
VALUES (value1, value2)
how do u delete from a table
DELETE FROM table
WHERE field = condition
how do u update a table
UPDATE table
SET field = value
WHERE field = condition