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.
4356982 のような値を持つ 2 つの列を持つ sqlite データベースがあり、これらすべてを 43.56982 で変更したいのですが、これを簡単かつ迅速に行うための sqlite コマンドはありますか? 私はUPDATEコマンドが好きだと思った
UPDATE table SET col1,col2
しかし、条件で?????
UPDATE MyTable SET col1 = col1 / 100000.0, col2 = col2 / 1000000.0
(正しい倍率を使用するように注意してください。)