我有一個包含10個奇數列的表,其中之一是「狀態」。 我想取其中狀態並不拒絕所有的行,所以我寫了下面的查詢上蜂巢: select * from table1 where status <> 'Rejected'
但是蜂房沒有返回我行,其中的狀態爲空。我改變了查詢 select * from table1 where status <> 'Rejected' or status is Null
我在具有大約80列的配置單中的表中有多個列。我需要在某些列上應用distinct子句,並從其他列中獲取第一個值。下面是我想要實現的內容。 select distinct(col1,col2,col3),col5,col6,col7
from abc where col1 = 'something';
上面提到的所有列都是文本列。所以我不能應用分組和聚合函數。