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, 2287🔥, 0💬
Popular Posts:
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...