Skip to content

Instantly share code, notes, and snippets.

@dtaivpp
Created September 7, 2019 16:21
Show Gist options
  • Save dtaivpp/8e6e1f74b8ef529be2c3ae08886b8807 to your computer and use it in GitHub Desktop.
Save dtaivpp/8e6e1f74b8ef529be2c3ae08886b8807 to your computer and use it in GitHub Desktop.
def gen_table_sql(col_list):
# Joins all rows with a comma and a newline except for the last
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