Slackbot
09/02/2022, 10:05 AMGian Merlino
09/02/2022, 3:50 PMAbhishek Agarwal
09/02/2022, 4:46 PMGian Merlino
09/02/2022, 4:58 PMAbhishek Agarwal
09/05/2022, 1:54 PMcount(unique)
described here - https://www.ibm.com/docs/en/informix-servers/12.10?topic=expressions-count-distinct-count-unique-functionsLaksh Singla
09/18/2022, 1:50 PMIf the COUNT DISTINCT function encounters NULL values, it ignores them unless every value in the specified column is NULL. If every column value is NULL, the COUNT DISTINCT function returns zero (0).So, IMO a row like (null, null, null) should not be counted and else like (’A, null, null) should be This might not be a reliable source of information but FWIW here, the output includes the row with NULL value in a single column (attached screenshot). I didn’t find much documentation on handling of the null values esp with multiple columns.