Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Custom Welcome Messages | Section
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Mastering CASE WHEN in SQL
SectionΒ 1. ChapterΒ 12
single

single

bookChallenge: Custom Welcome Messages

Swipe to show menu

Task

Swipe to start coding

Write a query that generates a welcome_message column for each employee in the employees table. The welcome_message should be 'Welcome back, [name]!' if the employee's years_at_company is greater than 1, and 'Welcome, [name]!' otherwise. If the employee's name is NULL, use 'there' in place of the name.

  • Use a CASE WHEN expression to determine the correct greeting based on years_at_company.
  • Use the employee's name value in the message, or substitute 'there' if name is NULL.
  • The resulting column should be named welcome_message.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 1. ChapterΒ 12
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt