TUTORIAL

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

INSERT INTO student ( fname, mname, lname, address )

VALUES (fname, mname, lname, address);

DELETE *

FROM student

WHERE id=enter_id;

UPDATE student SET fname = enter_firstname

WHERE id=enter_id;

You might also like