是否可以在表中找到2个或更多列的最大值?

时间:2017-11-13 13:20:48

标签: jdbc derby

例如:我有一张表如下

    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

我只想在列数学和科学中找到最大值。 有可能吗?

1 个答案:

答案 0 :(得分:1)

只需使用:

select max(science),max(math) from your_table