How do I return the everything in a string from a sql query before a certain character?
My data looks like this:
HD TV HM45VM - HDTV widescreen television set with 45" lcd
I want to limit or truncate the string to include everything before the dash.
So the final result would be “HD TV HM45VM”
Use SUBSTRING, but you’ll have to use either CHARINDEX or PATINDEX to get the location of the character you want the substring to stop at:
To do the opposite – strip everything to the left of the hyphen – use:
Effectively, make the location of the hyphen to be the starting point. Then you can use either
LENorDATALENGTHfunctions.