I have a Dossiers table with a print_flag column and i want set print_flag=1 for multiple rows.
UPDATE dossiers SET print_flag = 1
WHERE id=1013997,id=1020799,id=1020800,id=1020800;
How should the SQL look like?
I have a Dossiers table with a print_flag column and i want set print_flag=1 for multiple rows.
UPDATE dossiers SET print_flag = 1
WHERE id=1013997,id=1020799,id=1020800,id=1020800;
How should the SQL look like?