ScottSisk
11-15-2001, 08:12 AM
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?
|
View Full Version : Filtering a query ScottSisk 11-15-2001, 08:12 AM 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? araskas 11-15-2001, 02:51 PM Use a where clause to filter out all but one record. Example: UPDATE myTable SET myTable.myfld = 'abc" WHERE (((myTable.myPkeyfld) = 001)); |