Collections:
Updating Values with UPDATE Statements in SQL Server
How To Update Values in a Table with UPDATE Statements in SQL Server?
✍: 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 tutorial script below shows a good example:
SELECT * FROM fyi_links WHERE id = 101 GO id url notes counts created 101 dev.fyicenter.com NULL 0 2006-04-30 UPDATE fyi_links SET counts = 999, notes = 'Good.' WHERE id = 101; GO (1 row(s) affected) SELECT * FROM fyi_links WHERE id = 101 GO id url notes counts created 101 dev.fyicenter.com Good. 999 2006-04-30
As you can see, the SET clause takes column and value pairs to provide new values, while the WHERE clause defines which row to apply the update.
⇒ Updating Multiple Rows with One UPDATE Statement in SQL Server
⇐ Inserting Multiple Rows with One INSERT Statement in SQL Server
2016-11-02, 2177🔥, 0💬
Popular Posts:
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...