Which Of The Following Provides A Correct Syntax For Update #96
Which of the following provides a correct syntax for UPDATE statement?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Statements - SQL Update Statement - Quiz No.1.
Which of the following provides a correct syntax for UPDATE statement?
Update table_name Set column1=value1, column2=value2, … Where condition(s);
Update table_name Modify column1=value1, column2=value2, … Where condition(s);
Update table_name Alter column1=value1, column2=value2, … Where condition(s);
Update table_name Values column1=value1, column2=value2, … Where condition(s);