What could be the Consequence of inserting "id" in any autoincrementing 'id' containing table?
Posted
by Parth
on Stack Overflow
See other posts from Stack Overflow
or by Parth
Published on 2010-04-30T06:11:05Z
Indexed on
2010/04/30
6:17 UTC
Read the original article
Hit count: 171
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?
© Stack Overflow or respective owner