我是靠谱客的博主 复杂小甜瓜,最近开发中收集的这篇文章主要介绍php数据库students,对student_city列PHP MySQL的查询不正确,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

此页面是用户选择节目下拉列表的地方,预测摘要将按照下面的屏幕截图显示“所选项目”+SelectedProgram+“的学生总数为”+学生总数+“,根据3个学期的数据预测”+城市+“的”+平均总+“学生将在下一学期入学

。”;

a5c0d8861a9d9e83f449862495d2f0ed.png

目前,除了+city+之外,所有功能都在工作,有最大学生人数的城市名称应该显示在那里。 我不确定如何用当前的代码添加它。 我尝试了下面的查询,但不起作用。SELECT DISTINCT student_prg

, count(student_prg) as countprg

, count(student_city) as countcity

FROM marketing_data

, current_sem

WHERE marketing_data.intake_year = current_sem.intake_year

group by student_prg

, **student_city

ORDER

by countcity desc

LIMIT 1;

选择选项代码

Select Programme

$sql = "SELECT DISTINCT student_prg, count(student_prg) as countprg, count(student_city) as countcity FROM marketing_data, current_sem WHERE marketing_data.intake_year = current_sem.intake_year group by student_prg";

$do = mysqli_query($conn, $sql);

while($row = mysqli_fetch_array($do)){

echo ''.$row['student_prg'].'';

}

?>

Javascript代码

var selectedprg = '';

var selectedcount = '';

var selectedcity = '';

var average = '';

function myFunction() {

document.getElementById("demo").innerHTML = "The total number of students in the selected program " +selectedprg + "
is " +selectedcount + " , it is predicted that " +average+ " students in " +selectedcity+ " will enroll for the upcoming semester
based on the data of 3 semesters back.";

}

$(document).ready(function(){

$("#prg").change( function(){

selectedprg = $('#prg option:selected').text();

selectedcount = $('#prg option:selected').data('count');

selectedcity = $('#prg option:selected').data('count');

if(selectedcount > 5){

average = selectedcount / 3 + 5;

} else{

average = selectedcount / 3 - 5;

}

});

});

9673f607b4e273d9cdb9704f765f73a7.png

62740aeeec91ccdb7a98390c7a0579fb.png

612c39e27f3a0349bf8aec1a08187f63.png

最后

以上就是复杂小甜瓜为你收集整理的php数据库students,对student_city列PHP MySQL的查询不正确的全部内容,希望文章能够帮你解决php数据库students,对student_city列PHP MySQL的查询不正确所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部