I have a table which looks like this:
**Description**
North
East
West
South
Now if I want to search the table in the column description using a subscript of a string like for example I want to search the value North but the available string I have is "ValueNorth"
its like this sample SQL:
SELECT Description FROM Table1 WHERE Description = 'ValueNorth'
Now what I want to display in the result is the value of North in the description.
Is it possible in SQL server.
Thanks for the help