Collections:
Update Values in a Table in Oracle
How To Update Values in a Table in Oracle?
✍: FYIcenter.com
If you want to update some values in one row or multiple rows in a table, you can use the UPDATE statement. The script below shows a good example:
UPDATE fyi_links SET counts = 999, notes = 'Good site.' WHERE id = 101; 1 row updated. SELECT * FROM fyi_links WHERE id = 101; ID URL NOTES COUNTS CREATED ---- ------------------------ ---------- ------ --------- 101 http://dev.fyicenter.com Good site. 999 07-MAY-06
⇒ Update Values on Multiple Rows in Oracle
⇐ Insert Multiple Rows with 1 INSERT Statement in Oracle
2020-01-21, 2004🔥, 0💬
Popular Posts:
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...