I found for min(),max() that:
If the column has a unique index, it is used without needing a hint.
If it is not unique, the hint is ignored and an FTS is done (though I don't rule out getting the hint wrong ;))
In both cases an index scan is done when only one of min/max is in the select clause.
Can anyone explain?
