In a previous post I introduced you to calculated fields, and mentioned there were many other functions you could use to compute values. It's time to introduce you to the eight frequently used functions when it comes to manipulating strings in SQL Server.
LEFT and RIGHT
If you ever need the first 3 or last 3 characters of a string, then you'll need to use LEFT or RIGHT They both have similar syntax.
The string can be anything that contains string data: a variable containing a VARCHAR or NVARCHAR, a literal VARCHAR or NVARCHAR, or a column with a type of VARCHAR or NVARCHAR, etc. Are you sensing a pattern here? You can't take the left 3 characters of an INT, or a DATETIME, or a TEXT field. It may seem obvious why you can't do this operation on a number, but you may ask why you can't use these functions on a TEXT field.
The short answer is TEXT values are a very special case to SQL. If you need to try to take the LEFT or RIGHT x characters of a number or text, first CAST or CONVERT that expression to a VARCHAR of sufficient size. Hopefully you can create a VARCHAR or NVARCHAR big enough to hold your string.
The length is an INTEGER telling the server how many characters you want, using positive INTEGERS. UPPER and LOWER
The syntax to UPPER and LOWER is simple too. UPPER changes all the characters to uppercase, and LOWER returns all lower case. You don't have to use these functions in comparisons. Every SQL server I've used used a case insensitive collation for columns I searched through, but you may need these functions, as I try to avoid using the phrase always and never What this means is A is equal to a. Also note, these functions only work on CHAR, NCHAR, VARCHAR, and NVARCHAR datatypes.
LTRIM and RTRIM
Whenever you deal with data that has come from free form fields, users will invariably add problematic data to the form. It's not always intentional, but you as the database professional will have to clean it up. One of the most common items you have to clean up is leading or trailing spaces. The only odd thing is, Microsoft hasn't built a method to do both at the same time. But I can show you how, but I'll leave that for another post.
You pass it a string (CHAR, NCHAR, VARCHAR, NVARCHAR), and it takes off either the leading spaces, or the trailing spaces. You shouldn't need to use RTIM on a variable length character string.
REPLICATE
If you need to do the opposite of LTRIM or RTRIM and repeat a character a certain number of times, such as adding blank characters onto the end of a string. Then REPLICATE is the function you'll need.
The string is a VARCHAR, or something implicitly CONVERTable to a VARCHAR. This means SQL has to know how to turn the string you pass into a VARCHAR, otherwise you'll get an error. The length is a positive INTEGER telling SQL how many of the character you want returned. REPLACE
The last function I'll show you is REPLACE. While this may be the most complex function in this post, it will become one of your most used functions.
Basically you first pass the string you're looking through to find the seekString. If SQL finds the seekString, it will replace that with the replaceWithString. This is great for more advanced lookups. Especially when you couple it with the wildcard searches I showed you in a past post. You can do some pretty impressive things. The following isn't an example of an awesome - cool replace, but a simple one.
SELECT REPLACE('Luke''s Lightsaber was green in Episode 4.','green','blue')--this should return:Luke's Lightsaber was blue in Episode 4.--someone should call Lucas and remind him of this fact... Special Edition, meh!
Conclusion
These are only 8 of the vast array of SQL Server functions. In the future I'll show you how to use more of these functions. Even later, I'll show you how to create your own functions and do even more cool stuff!
If you have any questions, send them in! I'm always here to help!
Our community of experts have been thoroughly vetted for their expertise and industry experience. Experts with Gold status have received one of our highest-level Expert Awards, which recognize experts for their valuable contributions.
As a counterpoint to the above discussion: Sometimes bandwidth can also be a consideration. Using:
LEFT( someVarcharField, 7 )
...means that only seven characters will need to travel from the server to the application (as opposed to, say, 1,000 -- of which the app will need to discard 993). Just a thought for the mix.
To use text manipulation in Excel, the data needs to be brought into Excel first. Once it is there the simplest way to handle it is to use the CopyFromRecordset method. But, then it is already on the sheet and any manipulation will be slow. Manipulating the recordset data before placing it on the spreadsheet would require row by row placement instead of CopyFromRecordset and would be slow as well.
Manipulation in SQL is the prefered way for Excel reporting.
@leonstryker: I'm sorry but I disagree. I don't use use the CopyFromRecordset method you are discussing. Most of our reports in Excel use a simple DSN that either uses a view or stored procedure and it's trivial to massage the text in the spreadsheet.
Comments (15)
Commented:
LEFT( someVarcharField, 7 )
...means that only seven characters will need to travel from the server to the application (as opposed to, say, 1,000 -- of which the app will need to discard 993). Just a thought for the mix.
Commented:
Can you use LEFT$ for SQL as you can in Excel VBA? As a string function it outperforms the variant function LEFT
Cheers
Dave
Commented:
Commented:
Manipulation in SQL is the prefered way for Excel reporting.
Commented:
View More