I want data to be inserted into mysql table only if both fields are unique. For example:
ID VALUE __ _____ 1 abc //INSERT 2 abc //INSERT 3 def //INSERT 1 def //INSERT 2 abc //INSERT SHOULD NOT BE PROCESSED WHats the most efficient way to do accomplish this and also only using mysql.