stoyko
stoyko
Explore posts from servers
DTDrizzle Team
Created by stoyko on 11/20/2023 in #help
Update number column with it's current value and new number
I need to convert this RAW sql query into a query in drizzle, but I can't find a way. Anyone done something similar?
UPDATE products
SET quantity = quantity + 15
WHERE id = <my-id>;
UPDATE products
SET quantity = quantity + 15
WHERE id = <my-id>;
5 replies