I'm looking for a good method to split a string based on space\underscore into one columns.
For example:
string name = 'tom arnold lee ford'
into named_columns
and then do a query:
select name from named_columns
Output:
tom
arnold
lee
ford
Thank you...