Question
Easy

SQL command used to modify attribute values of one or more selected tuples is :

1
MODIFY
2
UPDATE
3
INSERT
4
ALTER
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Database Management System (DBMS) & SQL
Topic: SQL
Correct Answer
Option B
Explanation

The correct option is (2): The UPDATE command is the precise Data Manipulation Language (DML) statement in Structured Query Language (SQL) that is used to alter or revise the existing data stored in a database table. Its function directly corresponds to the question, as it is the only command explicitly designed to modify attribute values (column values) for one or more selected tuples (rows). A crucial component of the UPDATE…Read More