摘要:
1:表中有A B C三列,用SQL语句实现:当A列大于B列时选择A列否则选择B列,当B列大于C列时选择B列否则选择C列题目再混,思路要清晰;select case when a>b then (case when a>c then a else c end )else (case when b>c then b else c end )endfrom testabc思路:如果a大于b,再比较a与c else 比较b与c2: 同一条sql语句查询出“每门”课程都大于80分的学生姓名Name chengji fengshu张三 数学 75张三 语文 81李四 数学 90李四 语文 阅读全文