Подзадность вернула более 1 значения. Это не допускается, когда подзадность следует =,! =, <, <=,>,> = Или когда подзадность используется в качестве выражения.

/*Check to see if there are any triggers on the table you are trying to execute 
queries against. They can sometimes throw this error as they are trying to 
run the update/select/insert trigger that is on the table.

You can modify your query to disable then enable the trigger if the trigger 
DOES NOT 
need to be executed for whatever query you are trying to run.*/

ALTER TABLE your_table DISABLE TRIGGER [the_trigger_name]

UPDATE    your_table
SET     Gender = 'Female'
WHERE     (Gender = 'Male')

ALTER TABLE your_table ENABLE TRIGGER [the_trigger_name]
Lucas Gomes