I’ve a column for inserting ID which is not declared as primary key but I’ve to prevent dublicate entry of any ID.
how to find if a ID has already been inserted in the oracle database or not?? If the ID is already present in db, the user can not re-enter the ID.
How can I do it??
I’ve a column for inserting ID which is not declared as primary key but
Share
Create a unique constraint on the column.