How To Update Data In Oracle Database Tutorial Example
Run MS-DOS command prompt then copy & paste the below code to update data from a table in Oracle Database Server Tutorial Example
-- CONNECT as TUTORIAL -- i am using sqlplus as client. you can use anything as you like.
UPDATE test SET TestAge=101;
-- that's it!! TestAge column of all rows of Oracle database table "test" have been updated
-- is comment in Oracle
-- in fact it is comment in MSSQL and MySQL as well
How To Update Data In Oracle Database Tutorial Example - Result in MS-DOS SQLPLUS Client Tools
Related Tutorial Examples
- How To Descending Sort/Order Data IN Oracle Database Tutorial Example
- How To Update Specific Rows In Oracle Database Tutorial Example
- How To Delete Specific Rows Data From Oracle Database Tutorial Example
- How To Delete Data From Oracle Database Tutorial Example
- How To Use COMMIT ROLLBACK In Oracle Database Tutorial Example
- MySQL NULL or NOT NULL Value Check Example Using PHP
- MySQL Stored Procedure: INSERT INTO SELECT... Example
- MySQL Stored Procedure: CREATE TABLE SELECT... Example
- 19 Examples to Learn MySQL
- UNIX Command Example: rm - Remove or Delete file(s) or directory(ies)
- UNIX Command Example: cd - Change directory(ies)
- 20 Steps to Learn CakePHP by Example

No comments:
Post a Comment
leave your comments here..