Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 4, 2019 05:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ebb44cae83f65deef774b7e0fc905695 to your computer and use it in GitHub Desktop.
Save parzibyte/ebb44cae83f65deef774b7e0fc905695 to your computer and use it in GitHub Desktop.
if(
left(nombre, 1) = "L",
"Empieza con L",
if(left(nombre, 1) = "W", "Empieza con W", "No empieza con L ni con W")
) as texto
from personas;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment