Skip to content

Instantly share code, notes, and snippets.

@chriskooken
Created September 22, 2009 18:45
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 chriskooken/191312 to your computer and use it in GitHub Desktop.
Save chriskooken/191312 to your computer and use it in GitHub Desktop.
ALTER VIEW [dbo].[vPatient] AS
SELECT [uid_Patient],
[uid_ProviderOrganization],
-- [uid_ProviderLocation],
[uid_LastEncounter],
[vc_MRN],
[vc_FName],
[vc_LName],
[c_Gender],
[dt_Birthdate],
[dt_Created],
[vc_MiddleInitial],
[vc_PrimaryCareProvider],
[vc_SSN]
FROM [dbo].[tPatient]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment