0
I have the following code:
UPDATE PRODUTOS SET categoria = '001' WHERE marca = '1774'
But there are over 400 brands.. I thought about using AND in Where to do it with multiple brands at once, but it won’t, and with one brand it only will. Is there any way to shorten it so it doesn’t go one by one?
If you use AND... a tag can be two different values at the same time?
– Woss
Would not be
OR
(make = 1 OR mark=2 OR ...) or evenIN
(mark IN (1, 2, ...))?– anonimo