Iam working on sqlite database in android i want to insert a table like below
id procode proname user
1 pro123 mobile 120
2 pro123 mobile 121
3 pro345 watches 120
in the above table only id is uniq all values are not uniq but i dont want to allow same data for same user it means another user will insert same data now i dont want to insert duplicate while checking data of procode and user means like bwlow
id procode proname user
1 pro123 mobile 120
2 pro123 mobile 121
3 pro123 mobile 120
in the above table 3 is duplicate data