Unit 1 Database Concepts RDBMS Tool
Unit 1 Database Concepts RDBMS Tool
Unit 1 Database Concepts RDBMS Tool
Grade- XII
Database Management Software (DBMS) simplifies the task of managing the data
and extracting useful information out of it.
Update Command: This command is used to update the attribute values of one or
more tuples in a table. For example in the Teacher table, we want to update the
Salary of teacher with Teacher_ID=101 to 55000. This can be done using the
following command:
UPDATE Teacher SET Salary=55000 WHERE Teacher_ID=101;