adspace
How to add a value from textBox over an existing certain
column in SQL Server
Answer Posted / Rupesh Kumar Paswan
To update an existing row in a table with a value from a textbox, use the UPDATE statement along with the SET keyword. Here's an example for updating the 'ColumnName' column of a specific row where 'PrimaryKey' is the primary key:
UPDATE TableName
SET ColumnName = @TextboxValue
WHERE PrimaryKey = @SpecificRowID
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
No New Questions to Answer in this Category !! You can
Post New Questions
Answer Questions in Different Category