You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UPDATE `products` SET `stock`='stock+1' WHERE `id`=1
which - due to the single quotation around stock+1 - will result in a 0 stock value.
As a workaround I can still run the query directly, however it'd be nice to have this to work.
The text was updated successfully, but these errors were encountered:
I'm trying to run the following query:
The generated sql is
which - due to the single quotation around
stock+1
- will result in a 0 stock value.As a workaround I can still run the query directly, however it'd be nice to have this to work.
The text was updated successfully, but these errors were encountered: