Details
-
Type:
Task
-
Status: Closed
-
Priority:
Minor
-
Resolution: Won't Fix
-
Fix Version/s: N/A
-
Component/s: None
-
Labels:None
Description
nice to have a function split:
SELECT split("1,2,3,4,5", ',');
returns:
1
2
3
4
5
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Does this incur a lot development time please?
Basically, I wish to convert a comma separated string, e.g. @str1="1,2,3,4,5", to an array @arr1 so I can use it in, e.g.
SELECT uid FROM table1 WHERE id IN (@arr1);
Thanks a lot in advance
James