php - 请教一下,我现在需要列出,所有student_id,学生ID,要求每个学生必须同时修几门课程
ringa_lee
ringa_lee 2017-04-11 10:03:53
0
1
635

,例如major_id = 1 and major_id=2 and major_id=3,怎么构建sql语句那

数据库结构

id student_id marjor_id create_time

ringa_lee
ringa_lee

ringa_lee

全員に返信(1)
PHPzhong

你的问题有不明确啊
所有student_id,学生ID,student_id不就是学吗???
还有major_id = 1 and major_id=2 and major_id=3这个语句肯定查不到任何数据的

select student_id from(
select student_id,count(1) as cnt from table where marjor_id in(1,2,3,4) group by student_id
) t where t.cnt=4

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!