Filtering a query

ScottSisk

New member
Local time
Today, 15:30
Joined
Oct 29, 2001
Messages
7
When I run my update query, it is being applied to my entire table. How can I apply my update query to just one record in my table?
 
Use a where clause to filter out all but one record.
Example:
UPDATE myTable SET myTable.myfld = 'abc"
WHERE (((myTable.myPkeyfld) = 001));
 

Users who are viewing this thread

Back
Top Bottom