We are looking for a regular expression that returns the names of the SQL-Select Fields: 1 fixedValue Custno CustName (can be separated with , ; etc.)
select
1,
'test' as fixedvalue ,
tbl.s_no as custno ,
ltrim(rtrim(isnull(tbl.s_name1, '') + ' ' + isnull(tbl.s_name2, ''))) as custname
from tbl
Thanks in advance ;)