SQL console and delete "id" from log_changes

2 posts / 0 new
Last post
ik0dwj
SQL console and delete "id" from log_changes

Hi Petr,
I opened "SQL console" and from the log_changes table I would like to delete an insertion process and delete callsign (id = 241 and id = 242), so it will not run in the next online log update (on Club Log and HRDLog).
The command is this:
Delete from log_changes WHERE id = 241 AND id = 242;
It's correct?

Thanks for your help.

Giuseppe

ok2cqr
ok2cqr's picture
Re: SQL console and delete "id" from log_changes

Hi Giuseppe,

I think it should be

delete from log_changes where id = 241 or id = 242;

73 Petr