Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i update MS Access table
Posted

1 solution

IN Access
Use update command
SQL
UPDATE table_name
SET column1=value, column2=value2,...
WHERE some_column=some_value

or
open table
and updata data
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900