KnowledgeBoat Logo

Computer Science

Conditional updates in table data are possible through UPDATE command.

DDL & DML

3 Likes

Answer

True

Reason — Conditional updates in table data are possible through the UPDATE command in SQL. The UPDATE command specifies the rows to be changed using the WHERE clause and the new data using the SET keyword. This enables to perform updates selectively based on specific conditions defined in the WHERE clause.

Answered By

2 Likes


Related Questions