ixzc commented on issue #24581:
URL: https://github.com/apache/doris/issues/24581#issuecomment-1728704235

   like this:
   
   
   CREATE TABLE test_GROUP_CONCAT(
     value varchar(10)
   )ENGINE=OLAP
   DISTRIBUTED BY HASH(`value`)    
   PROPERTIES
   (
       "replication_num" = "1"
   );
   
   INSERT INTO test_GROUP_CONCAT (value)
   VALUES ('a'), ('b'), ('c'), ('c');
   
   select GROUP_CONCAT( `value`ORDER BY `value` ASC) from 
   (
       select distinct value
       from test_GROUP_CONCAT
   ) a ;     
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to