|
-
I'd like to be able to return a single cell containing a string formed from all the records in a table, ie
mysql> SELECT OrganisationName FROM t1;
+------------------+
| OrganisationName |
+------------------+
| this |
| that |
| the other |
+------------------+
I want this:
+-----------------------+
| SomeSelectFunction |
+-----------------------+
| this, that, the other |
+-----------------------+
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|