Table in SQLITE, want to simple way to delete everything to a right of a set phrase/character in the Company_name_ column, in this case everything after "LLC":
Company_name_ |
---|
Example LLC $42 |
Example llc,klp |
Example LLc jim |
becomes
Company_name_ |
---|
Example LLC |
Example llc |
Example LLc |
Tried Set Charindex and Substr but getting syntax errors. Thank you