What could be the Consequence of inserting "id" in any autoincrementing 'id' containing table?
If I have a Tabe in which I have configured the column "id" as the auto incrmented, But still I am using an INSERT query in which id is defined, like wise INSERT INTO XYZ (id) values ('26');
How does it going to effect the table and the process related to it..
Is it "no issues" to do this? or it should be avoided?