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.
テーブルの列で数学を実行したい。 列に数字があり、それを 11 で割り、次に *0.5 と最初の数字から地雷を割りたいのですが、mysql だけでこのようなことを行うことはできますか? またはこれを行うにはphpファイルが必要ですか????
SELECT numcol, ((numcol / 11 ) * 0.5 - numcol) AS calccol FROM special_table;
データベース層ではなくアプリケーション層に計算ロジックを残す方が良いでしょうが、それでも必要な場合はこれを試してください:
Select ((column/11)*0.5) from mytable