Advertisement
maxuser74

SQL test #1

Apr 25th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. res = pd.read_sql_query("SELECT giacenze.'Codice', giacenze.'Cliente', "
  2.                         "giacenze.'Residuo', ordini.'Data Ord.', ordini.'Qty ord' "
  3.                         "FROM giacenze, ordini "
  4.                         "ON giacenze.'Codice' = ordini.'Codice' "
  5.                         "ORDER BY giacenze.'Cliente'", conn)
  6.  
  7. print(res)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement