primary key
、およびそれの列がある場合、Mysqlで挿入無視を使用するにはどうすればよいですかauto increments
。
私は(主キーの自動インクリメント)を持っprimary keys
ており、自動インクリメントのない主キーです。id
userId
elmCol
そう:
id | userId | elmCol
--------------------
1 | 1 | 1 //Allow
2 | 1 | 2 //Allow
3 | 1 | 3 //Allow
4 | 1 | 1 //Not allowed if inserted again. I've put it in here just for example
5 | 2 | 1 //Allow
6 | 2 | 2 //Allow
7 | 2 | 3 //Allow
8 | 2 | 1 //Not allowed if inserted again. I've put it in here just for example
MySql と MyIsam 型テーブルを使用しています。このようなことをして使用できinsert ignore
ますか?