>  기사  >  백엔드 개발  >  php 如何修改多个值

php 如何修改多个值

WBOY
WBOY원래의
2016-06-23 13:30:131273검색

新手求助

一张表table

id uid age time status



现在需要筛选出status=1或2的数据批量修改age=10以及status=3,并且给每个人发送通知

单个发送函数已经写了:notice($uid,$age,$status);

大概知道是数组来实现,不知道怎么写规范,大家帮帮忙


回复讨论(解决方案)

1、select *from tablename where  status=1 or status = 2
2、发数据
3、update tablename set age=10,status=3  where status=1 or status = 2

看一下 notice($uid,$age,$status);这个$status具体什么意思,然后配合上边试试

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.