08-10-2010 03:54 PM
Hi all,
I have a question about the database toolkit. How do I query a particular row in a table and modify an element in that row? By doing this, the database table is getting updated.
Yik
Solved! Go to Solution.
08-10-2010 04:33 PM
You use the Execute Query and do an UPDATE
UPDATE table_name
SET column1=value, column2=value2,...
WHERE some_column=some_value
08-11-2010 10:33 AM
When I write sql query, I always use it to get data, and I have never tried to update a table in a database. I didn't know that you can use the querying function to update a table. Thanks, it worked.
Yik