Last active
August 1, 2019 20:12
-
-
Save JohnMGant/11129c244a28f9cc2992375384e97e14 to your computer and use it in GitHub Desktop.
SQL for ORM Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select Id, FirstName + ' ' + LastName as Name, coalesce(FavoriteColor, 'Green') as FavoriteColor | |
| from Employees | |
| where LastName like '[whatever you passed in]%' | |
| order by LastName, FirstName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment