在SQL中如何在查询结果中再次查询得到所需要的值,例如:查询到张三选修三科选修课的成绩,但我只要其中一

如题所述

这个可以实现,简单的嵌套查询,假设表1 里的有字段 ID,name,yuwen,shuxue,yingyu
select a.shuxue from ( select * from 表1 where name='张三')a
你试一下
温馨提示:答案为网友推荐,仅供参考
第1个回答  2011-11-25
if*****elseif***elseif****
写在查询按钮下。做几个if语句进行选择
第2个回答  2011-11-25
select * from (select couse ,name from table where name = '张三') where couse = '1'
第3个回答  2011-11-25
select * from (select * from 表名 where 姓名='张三') as a where a.选修课字段='英语'本回答被提问者采纳
相似回答