Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Challenge: Custom Welcome Messages | Advanced CASE WHEN Logic
Mastering CASE WHEN in SQL

bookChallenge: Custom Welcome Messages

Tarea

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.

Solución

¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 6
single

single

Pregunte a AI

expand

Pregunte a AI

ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

close

bookChallenge: Custom Welcome Messages

Desliza para mostrar el menú

Tarea

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.

Solución

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 2. Capítulo 6
single

single

some-alt