-2

你将如何编写一个脚本来计算两个值之间的百分比变化,然后将结果提交到一个新的 MYSQL 表中?

4

1 回答 1

1

您可以在一个简单的 SQL 查询中完成,而无需在 PHP 中执行任何操作:

假设要插入的表被调用newTable并且有两列(ID这是 auto_increment,percy这是col1/col2来自 table2 的百分比值):

insert into newTable 
(ID, percy) 
select 
    null, 
    col1/col2 
from 
    table2 
where 
    somecondition=someOtherCondition

或者,如果您想获取原始行的 ID(称为 myID)并将计算的百分比插入到新表中:

insert into newTable 
    (ID, percy) 
    select 
        myID, 
        col1/col2 
    from 
        table2 
    where 
        somecondition=someOtherCondition
于 2012-08-21T13:01:48.737 回答