DEV Community

pooyaalamdari
pooyaalamdari

Posted on

delete

first I insert new row to table

INSERT INTO books (bookid, title, author, isbn, price, instock)
VALUES (6, 'bookname', 'author name', '1010101', 1.00, FALSE);
Enter fullscreen mode Exit fullscreen mode

Image description

DELETE FROM books
WHERE bookid=6
Enter fullscreen mode Exit fullscreen mode

Image description

Top comments (0)