Is there a way to reset an auto_increment field to 0 via the sqlyog interface? i.e. without having to manually issue a SQL command.
I can clear the table's data but it doesnt reset the auto_increment field (this is expected behaviour), but it would be nice to have a non-default tickbox option to reset the auto_increment to 1 when i select the “Empty Table” option (consider that a feature request maybe?).
I did some poking around but I can't find a menu option to do this.
This would be just a convenience thing. In the meantime the following SQL works fine.
alter table auto_increment = 0;
Cheers, Ant