The Issue:
I am trying to select from multiple tables, Table A and B but this is mainly regarding the Only column I am choosing from Table B. The values in this column contain an Array of string.
Aim is to get get rid of any [] and then look at string. There are two main types of strings, one that begins with “some text needed”, and others that have same "some text needed" followed by comma and further text, Other type of string contain random text NOT Starting with "some text needed".the examples include:
- "some text needed"
- "some text needed, other"
- "some text needed, extra text"
- "some text needed, extra - text, required"
- "today is a rainy day"
- "Extra hot"
What is Required:
For condition where string does not start with "some text needed" simply return the text value and for others return the values after the comma (,) while ignoring "some text needed," so the output would look something like:
Desired Results:
- "other"
- "extra text"
- "extra - text, required"
- "today is a rainy day"
- "Extra hot"
I have used following SQL code, which gets rid of [ and ] but it is always bringing me back "some text needed, other" instead of just "other"
SELECT
col1, col2, ..., col10,
CASE
WHEN CHARINDEX('[', cier.if_text_is_required) > 0
THEN REPLACE(REPLACE(cier.if_text_is_required, '[', ''), ']', '')
WHEN CHARINDEX('some text needed,', cier.if_text_is_required) > 0
THEN
CASE
WHEN CHARINDEX(',', cier.if_text_is_required, CHARINDEX('some text needed,', cier.if_text_is_required) + LEN('some text needed,')) > 0
THEN LTRIM(SUBSTRING(cier.if_text_is_required, CHARINDEX(',', cier.if_text_is_required, CHARINDEX('some text needed,', cier.if_text_is_required) + LEN('some text needed,')) + 2, LEN(cier.if_text_is_required)))
ELSE cier.if_text_is_required
END
ELSE cier.if_text_is_required
END AS if_text_is_required
FROM TableA
LEFT JOIN (
SELECT id, if_text_is_required, ROW_NUMBER() OVER (PARTITION BY id ORDER BY date DESC, rn_id DESC) AS rn
FROM TableB
WHERE if_text_is_required IS NOT NULL
) AS cier ON TableA.id = cier.id AND cier.rn = 1
I can get rid of [ and ] however, I am unable to SELECT Only the string after the comma when string contains, "some text needed".
Can someone spot any issues with the above SQL and can assist me? All assistance is appreciated.
STUFF()
: This function is used to remove a part of the string and replace it with another string.CHARINDEX()
: This finds the index of the first occurrence of a string within another one.REPLACE()
: This is used twice to remove both the '[' and ']'