Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Review
5. Numeric functions: concatenation
So you think you can count?
Rounding functions and more
Review and practice

Instruction

Good! You can also join numbers and text values using the concatenation operator ||. Take a look:

SELECT 'Your character is at level ' || level AS level_info
FROM character;

Simple, right?

Exercise

For each character above level 1, show the following text:

The account balance for NAME is MONEY.

Where NAME is the name of the character and MONEY is the current account balance. Name the column account_info.

Stuck? Here's a hint!

Use the || operator. Don't forget about the final period.