代码如下:php语言
var $score//分数变量
if($score<60){
echo "不及格"
}elseif($score<69 &&$score>=60){
echo "及格"
}else if($score>=70 &&$score<80){
echo "中"
}else if($score>=80 &&$score<90){
echo "良"
}else{
echo "优"
}
mysql中没有if可以使用case when then end 来代替;例如:查询语句select case 字段 when 1 then '一'
when 2 then '二' end from 表名
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)