Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 14, 2019 18:41
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/f7a4312b99c88a5399e833d1967c2db8 to your computer and use it in GitHub Desktop.
Save parzibyte/f7a4312b99c88a5399e833d1967c2db8 to your computer and use it in GitHub Desktop.
/*
Indicar el listado de los empleados del sexo masculino y que son solteros
*/
select * from HumanResources.Employee where Gender = 'M' and MaritalStatus = 'S';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment