如何使用Google应用脚本在变量中设置数据库中的选择值

时间:2017-09-26 05:30:20

标签: mysql google-apps-script google-sheets

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值来应用 如果有其他条件。

1 个答案:

答案 0 :(得分:0)

更改

if (status=0){

if (status==0){
  

=是作业

     

==是平等

     

===是严格的平等