Hi All,
Is there any way to update whole coloumn with the selected value from drodpdown.
I have to replace complete coloumn with a selected value from dropdown.
How do i write update query for this. thanks in Advance.
Hi BugHunter,
Use the below statement.
UPDATE TableName SET ColumnName = YourValue
Example
UPDATE Customer SET Status = 'Present'
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.