扫码关注官方订阅号
,例如major_id = 1 and major_id=2 and major_id=3,怎么构建sql语句那
数据库结构
id student_id marjor_id create_time
ringa_lee
你的问题有不明确啊所有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
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
你的问题有不明确啊
所有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