Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 23, 2018 20:03
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/a721fce9689feec3e286098838e2a28a to your computer and use it in GitHub Desktop.
Save parzibyte/a721fce9689feec3e286098838e2a28a to your computer and use it in GitHub Desktop.
SELECT
IF(
INSTR(nombre, ' ') <> 0, #Condición
LEFT(nombre, INSTR(nombre, ' ')), # En caso de que se cumpla, lo cortamos
nombre # En caso de que no se cumpla, lo seleccionamos como está
)
AS primerNombre
FROM tblUsuarios;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment