Instruction
In this part, we'll teach you some basic T-SQL string functions. They'll help you manipulate text values in your queries. You will learn how to:
- concatenate (combine) multiple text values into one value,
- convert text to uppercase and lowercase,
- convert text to display the characters in reverse order,
- select substrings and find their position in a string,
- replace parts of a string.
We're going to work with some data from a marketing agency. Let's find out more!
Exercise
Select all columns from the Item table. As you'll see, it contains:
- item identifiers (the
Idcolumn), - names (the
Namecolumn), - basic item descriptions (the
Typecolumn).



