Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1000 行のデータを含む quantity という列があります。mysql ですべての数量をランダムに変更し、数量を 10% ~ 20% 増やしてほしい
この更新ステートメントを使用できます
update mytable set quantity = quantity * (1.1 + rand() * 0.1)
試す :
UPDATE your_table SET quantity = quantity*(1.1+RAND()*.1)