Skip to content

Instantly share code, notes, and snippets.

@dtaivpp
Created September 7, 2019 16:25
Show Gist options
  • Save dtaivpp/d4aa25711bb6921fb63445414f085198 to your computer and use it in GitHub Desktop.
Save dtaivpp/d4aa25711bb6921fb63445414f085198 to your computer and use it in GitHub Desktop.
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