Last active
October 13, 2020 15:54
-
-
Save phillipsj/99c9bc4bbe06ed04f6edf0301f66341e to your computer and use it in GitHub Desktop.
Dash tutorial query
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
query = ''' | |
SELECT CONCAT([FirstName],' ', [LastName]) as FullName, | |
[SalesQuota], | |
[SalesYTD] | |
FROM [Sales].[vSalesPerson] | |
''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment