Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- What Are Functions? 3:12
- Adding Text Columns Together 3:39
- Single vs Double Quotes
- Concatenating Text 2 objectives
- Finding the Length of Text 2:50
- Getting the Length of a String 1 objective
- Changing the Case of Text Columns 2:45
- Changing Cases of Strings 2 objectives
- Creating Excerpts From Text 2:19
- Creating Excerpts 1 objective
- Replacing Portions of Text 1:58
- Replacing Strings 1 objective
- Practice Session 3:27
- Review: Working with Text 5 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
You are not restricted by the column definitions in the database schema. You can join columns together so they're more human readable as one.
SQLite, PostgreSQL and Oracle
Use the concatenation operator ||
.
SELECT <value or column> || <value or column> || <value or column> FROM <table>;
MS SQL
Use the concatenation operator +
.
SELECT <value or column> + <value or column> + <value or column> FROM <table>;
MySQL, Postgres and MS SQL
Use the CONCAT()
function.
SELECT CONCAT(<value or column>, <value or column>, <value or column>) FROM <table>;
Cheat Sheets
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
PLUS
Rushabha Jain
Front End Web Development Techdegree Student 9,859 Points1 Answer
-
Hanna Han
4,105 Points1 Answer
-
Allen Gonzalez
788 PointsChallenge 1 of the following quiz asks to put <> around the email
Posted by Allen GonzalezAllen Gonzalez
788 Points1 Answer
-
Wayne Comber
8,169 PointsWhat is best practice for data manipulation like concatenation?
Posted by Wayne ComberWayne Comber
8,169 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up