Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cannot edit sql query

Status
Not open for further replies.

petrovlis

Programmer
Jan 15, 2002
114
NL
I have to make manual corrections in my Sql Goldmine 7
SQL data base. (Sqlexpress)
I made in Access/2007 an EXTERNAL connection to the Sql database and I have now a query giving the
various tables and fields I need for that operation
I need to EDIT/correct the Contsupp of Goldmine database,but I cannot make any editing/corrections in that column.

How to do this??

Thanks
William
 
you mean you want to edit the values of a field returned in the query? You'll need to create an UPDATE query for that...

Code:
UPDATE TableName SET FieldName = "SomeValue" WHERE SomeCondition

alternatively you could link the tables and work through a table view.

Leslie

Have you met Hardy Heron?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top