BobLoblaws
Programmer
Let's say you have a simple SELECT statement that returns maybe 10 records.
SELECT Name from TableName WHERE Name LIKE 's*';
All the records I want are prefixed with the letter 's', but I want the results to display without the 's'. However, the 's' is necessary to be prefixed. Is there a way to remove it in the SELECT statement? Something similar to a Trim() in VB.
If this doesn't make sense then nevermind.
SELECT Name from TableName WHERE Name LIKE 's*';
All the records I want are prefixed with the letter 's', but I want the results to display without the 's'. However, the 's' is necessary to be prefixed. Is there a way to remove it in the SELECT statement? Something similar to a Trim() in VB.
If this doesn't make sense then nevermind.