3列のテーブルPRODUCTSがあります
id merchant selected (empty column)
1 Roger
2 Anthony
3 Maria
4 Joseph
5 Serge
このようなクエリを作成したい(構文が間違っています。私がやろうとしていることを説明するためのアイデアです)
SELECT * WHERE merchant LIKE '%thon%' FROM products.merchant
INSERT INTO products.selected
同じID行に配置するため、結果は次のようになります
id merchant selected
1 Roger
2 Anthony Anthony
3 Maria
4 Joseph
5 Serge
そのようなトリックを作成する方法のヒントを非常に義務付けられます!