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.



