Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 14, 2019 18:42
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/7ff1dd09ce03305e3508e5bb413953f9 to your computer and use it in GitHub Desktop.
Save parzibyte/7ff1dd09ce03305e3508e5bb413953f9 to your computer and use it in GitHub Desktop.
/* Empleados cuyo apellido sea con la letra "S"*/
select * from HumanResources.Employee e
inner join Person.Person p
on e.BusinessEntityID = p.BusinessEntityID
and p.LastName like '%S%';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment