SQL - Update
The SQL UPDATE statement is used to update values of rows, columns or cells.
Suppose we have a table of student looking like this. The table name is "tblStudent".
Suppose we found error with the home state of the student with StudentID 1001. Suppose he is from TX, not CT. Then we use the following statement to make the change.
update tblStudent set HomeState='TX' where StudentID=1001
The result is below.
Comments
Post a Comment