I need to combine two sql update requests into one
UPDATE test SET text = 'ok' WHERE id = '1' UPDATE test SET text = 'no' WHERE id = '2'
I tried this:
UPDATE test SET text = 'ok' WHERE id = '1'; UPDATE test SET text = 'no' WHERE id = '2'
but does not work. Help me please.