How to check if a value already exists to avoid duplicates?

If you don’t want to have duplicates you can do following:

If multiple users can insert data to DB, method suggested by @Jeremy Ruten, can lead to an error: after you performed a check someone can insert similar data to the table.

Leave a Comment