Ricardo J Vargas

Write 3 update and delete statements

I updated the names of the students from nicknames to real names.

  • October 10, 2017 at 8:35 PM
  • Visible to public
UPDATE students SET name “James” WHERE “jimbo”;
UPDATE students SET  name “Robert” WHERE “Bobby”;
UPDATE students  SET name “Clarus” WHERE “Claire”;


DELETE FROM names WHERE name=“James”;
DELETE FROM names WHERE name=“Bob”;
DELETE FROM names WHERE name=“Clarus”;