The general syntax of the update statement is as follows: UPDATE <table_name>SET <column_name> = value [, column_name = value ...][WHERE <condition>];
True
False
Answers
Answered by
1
Answer:
UPDATE command is used to update any record of data in a table. Following is its general syntax,
UPDATE table_name SET column_name = new_value WHERE some_condition;
WHERE is used to add a condition to any SQL query, we will soon study about it in detail.
Lets take a sample table student,
student_id name age
101 Adam 15
102 Alex
103 chris 14
UPDATE student SET age=18 WHERE student_id=102;
S_id S_Name age
101 Adam 15
102 Alex 18
103 chris 14
Answered by
0
Answer:
Explanation:
UPDATE command is used to update any record of data in a table. Following is its general syntax,
UPDATE table_name SET column_name = new_value WHERE some_condition;
WHERE is used to add a condition to any SQL query, we will soon study about it in detail.
Lets take a sample table student,
Similar questions
Hindi,
2 months ago
Hindi,
2 months ago
CBSE BOARD XII,
2 months ago
Science,
5 months ago
Science,
10 months ago