淘先锋技术网

首页 1 2 3 4 5 6 7

mysql中如何对表中的字段值进行加减操作,并赋值.

update语句可以搞定,但是需要join配合,

例如,有个表如下,需要将id =999对应的name改为id=1000对应的name

可以这么做:

1

update person t1 join (select id,name from person where id = 1000 limit 1 ) as t2 on t1.id = t2.id set t1.name = t2.name where t1.id = 999 and t2.id = 1000

修改后的结果

这样就可以了。。

mysql中timestamp做减法

select count(*) from handup where unix_timestamp(hinserttime) (select unix_timestamp(max(hinserttime)) from handup) - 3600

mysql语句如何作加减乘除运算?

如:

UPDATE ecs_goods SET integral = integral*0.01 WHERE cat_id in (1029,1025,1024,1023)

integral 字段需为数值型,不然会报错。

怎样对MYSQL中的两列时间做减法?

--这样是显示的结果是差值总的秒数

select sum(unix_timestamp(B)-unix_timestamp(A)) as 秒数

from tb

--这样是显示成 xxx:xx:xx 的形式

select sec_to_time(sum(unix_timestamp(B)-unix_timestamp(A))) as ti

from tb

--

mysql中让两个表中的某一项数据做减法的sql语句怎么写?

1.select a.商品名,(a.入库数量-b.出库数量)。

2.as 剩余数量 from 入库表 a,出库表 b。

3.where a.商品名=b.商品名。

php+mysql环境中,如何计算月份相减?

可以这样:

date('m',strtotime($date1))-date("m",strtotime($date2));

这样就是你得到的两个月份的差