update query doesn't update

oaishm

Board Regular
Joined
Jan 30, 2009
Messages
97
When I run this query, access pulls over 385 records:

Code:
select * from dbo_MenuItem 
WHERE dbo_MenuItem.Primary_Vendor=18 AND dbo_MenuItem.Price_6=0.53 AND dbo_MenuItem.PLU Like "b%" AND dbo_MenuItem.Price=0.59;

But, when I run this query, it says it will update 0 records

Code:
update dbo_MenuItem 
SET dbo_MenuItem.Price_6 = 0.69*0.9, dbo_MenuItem.Price = 0.69
WHERE dbo_MenuItem.Primary_Vendor=18 AND dbo_MenuItem.Price_6=0.53 AND dbo_MenuItem.PLU Like "b%" AND dbo_MenuItem.Price=0.59;

This is really inexplicable? Does anyone have any ideas why this would be the case
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
since all your tables start with dbo_ I assume they're actually SQL Server tables that are linked to Access

each linked SQL Server table needs to have a unique id field or it won't update
 
Upvote 0

Forum statistics

Threads
1,215,227
Messages
6,123,739
Members
449,116
Latest member
alexlomt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top