Skip to content

Instantly share code, notes, and snippets.

@j-bennet
Created November 24, 2019 22:55
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 j-bennet/e85f7694cb4ec621f06c59a84c9b81da to your computer and use it in GitHub Desktop.
Save j-bennet/e85f7694cb4ec621f06c59a84c9b81da to your computer and use it in GitHub Desktop.
# don't do this
pd.read_sql_query('select * from table1', conn)
# do this
pd.read_sql_query('select field1, field2, field3 from table1', conn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment