Question
Editing a record in database question in ACD
You need to edit data in a table. You ate currently using the following statement:
INSERT INTO product (productId, productName) VALUES (3, "App1e");
What is the issue?
- A. You should be using an UPDATE statement.
- B. You forgot the WHERE clause in your statement.
- C. You should be using a CREATE statement.
- D. You should be using an EDIT statement.
The correct answer in the site from where I got this question says 'C', I think it should be 'A'. What's the correct answer?
