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