Hello,
My database table containing a column name P_ID
Field Extra = P_ID,
Type = int(11),
Null = NO,
Key = PRI,
Default = NULL,
Extra = auto_increment
1. If I delete any row from my table (eg. P_ID = 2) I dont get that P_ID even I insert any new data. Is it for auto_increment?
2. If I want to remove auto_increment from that attribute, how it possible?
Advance thanks.