Vidyalelo
MySQL · Q300

MySQL

Programming · MySQL · question 300

Q300

"INSERT" is same as "UPDATE"?

A.
NO
Answer
B.
YES
C.
May be
D.
None of the mentioned

Answer: Option A

Solution

Answer: Option A
Solution:
This question is about two different commands in MySQL: "INSERT" and "UPDATE". Let's break down what each command does:
"INSERT" is used to add new data into a table. Think of it like adding a new row to a spreadsheet.
"UPDATE" is used to modify existing data in a table. It's like changing the values in a row of your spreadsheet.
So, are they the same? NO. They have distinct purposes and functionalities.
The answer is Option A: NO.