例如:我有一张表如下
id math science english history
1 80 90 90 90
2 70 60 81 78
3 69 50 45 80
4 30 40 10 80
我只想在列数学和科学中找到最大值。 有可能吗?
答案 0 :(得分:1)
只需使用:
select max(science),max(math) from your_table