Created
August 19, 2010 15:19
-
-
Save gregglind/538120 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ########################### | |
set up table and populate it | |
############################# */ | |
DROP TABLE IF EXISTS t; | |
CREATE TEMP TABLE t (k varchar, v varchar); | |
INSERT INTO t VALUES ('1', 'a,b,c'); | |
INSERT INTO t VALUES ('1', 'a,d,e'); | |
INSERT INTO t VALUES ('2', 'e,f'); | |
/* ##################### | |
output wanted | |
k v | |
-- --------- | |
1 a,b,c,d,e | |
2 e,f | |
################ */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment