On which database structure does an update statement operate?
On which database structure does an update statement operate?
An update statement in a database operates on a table. This is because tables are the core storage structures in relational databases, and update statements are used to modify the data within these tables.
A, Table, UPDATE being one of the DML statements (along with INSERT, DELETE etc).