hi everyone,
i am forced to update a field[ID] which is one of the primary keys in a table
the update will be like a sorta swap between the ids inside the table
my solution is ,
doing a double update, first updating with dummy number then replacing the dummy with original one
But i am looking for a solution which is more professional ,
note, i cannot do any type of data structure / DB Schema change in back end
i am forced to update a field[ID] which is one of the primary keys in a table
the update will be like a sorta swap between the ids inside the table
my solution is ,
doing a double update, first updating with dummy number then replacing the dummy with original one
But i am looking for a solution which is more professional ,
note, i cannot do any type of data structure / DB Schema change in back end
Comment