InterviewSolution
Saved Bookmarks
| 1. |
“INSERT” is same as “UPDATE”?(a) NO(b) YES(c) May be(d) None of the mentionedI got this question in an interview for job.This key question is from Populating & Modifying Tables in division Using SQL to Manage Data of MySQL |
|
Answer» CORRECT answer is (a) NO To explain: “INSERT “is used to entering the data in the NEWLY created table while “UPDATE” is used to modify the data which is already inserted with help of statement “INSERT”. |
|