Created
September 7, 2019 16:25
-
-
Save dtaivpp/d4aa25711bb6921fb63445414f085198 to your computer and use it in GitHub Desktop.
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
def join_col_list(col_list): | |
'''Takes in column list and joins with commas to form sql statement''' | |
query = ',\n'.join(col_list) | |
return query |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment