私のテーブル構造は次のとおりです。
id | type | attribute | customer_id | value
1 | 2 | 1 | 1 | some
2 | 2 | 2 | 1 | this
3 | 2 | 3 | 1 | that
4 | 2 | 1 | 2 | cool
5 | 2 | 2 | 2 | just
等
value ='mine' を属性4 として各customer_idに追加したいと思います。
INSERT INTO mytable
SET type='2', attribute='4, value='mine'
問題は、それを customer_id にバインドし、顧客ごとに 1 回だけバインドする方法です。