Hello boys and girls :)
I have that query:
SELECT * FROM customer
INNER JOIN address ON customer.customer_id = address.customer_id
WHERE address.country_id = 176
So i want to update custome.status
to 0
I tried with that query but "0 rows affected":
UPDATE customer
INNER JOIN address ON customer.customer_id = address.customer_id
SET customer.status = 0
WHERE address.country_id = 176
I have about 200 ppl with address.country_id = 176 !
Any ideas, thank u !