1
在image
數據類型上執行聚合函數的最佳方式是什麼?帶圖像數據類型的聚合函數
例如,在binImage是image
數據類型,我想回到要麼binImage或空:
max(case when somechar = 'A' and anotherchar = 'B' then binImage else null end) as result
...是行不通的,因爲max
不支持圖像數據類型。
我知道image
已折舊。
您是否使用'MAX'來任意取得單個結果? – Nicarus
@尼卡羅斯,不完全是「任意」。 「count」不會返回圖像,也不會返回「sum」或「min」等。但是,是的,我試圖得到一個結果 - 因此需要某種聚合函數。 –