mysql 字段增加

以下是THINKPHP中的例子

$model = M("research_record");
        $sql="alter table tp_research_record add s_mobile INT(100) comment '学生手机',add r_id INT(100) comment '课程ID',add q_id INT(100) comment '问题ID',add a_id INT(100) comment '答案ID',add r_time INT(100) comment '投票时间' "; $result =$model->execute($sql); if($result ){ echo"字段增加成功"; }else{ echo "字段增加失败"; } 

你可能感兴趣的:(mysql)