Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
367 views
in Technique[技术] by (71.8m points)

Parse out word between two characters SQL Netezza

I am having trouble finding the correct syntax to parse out a word between two characters in Netezza.

PATIENT_NAME
SMITH,JOHN L
BROWN,JANE R
JONES,MARY LYNN
question from:https://stackoverflow.com/questions/65833277/parse-out-word-between-two-characters-sql-netezza

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think Netezza supports regexp_extract(). That would be:

select replace(regexp_extract(name, ',[^ ]+'), ',', '')

Or regexp_replace():

select regexp_replace(name, '^[^,]+,([^ ]+)( |$).*$', '1')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...