MySQL table1结构:
id name age status
1 roy 30 1
2 jon 40 0
3 roky 25 1
4 jerin 28 1
number_row=select * FROM table1 where status=0
for{i=0;i<number_row;i++}
if (status==0){
update that row and save in table2
}else{
no update
}
}
代码:我无法在变量数据库表中设置pick值来应用 如果有其他条件。
答案 0 :(得分:0)
更改
if (status=0){
到
if (status==0){
=是作业
==是平等
===是严格的平等