高级查询:利用表关系

Python 数据导入入门

Hugo Bowne-Anderson

Data Scientist at DataCamp

表是关联的

ch_3_5.003.png

Python 数据导入入门

表是关联的

ch_3_5.004.png

Python 数据导入入门

表是关联的

ch_3_5.005.png

Python 数据导入入门

连接表(JOIN)

ch_3_5.007.png

Python 数据导入入门

连接表(JOIN)

ch_3_5.008.png

Python 数据导入入门

连接表(JOIN)

ch_3_5.009.png

Python 数据导入入门

连接表(JOIN)

ch_3_5.010.png

Python 数据导入入门

连接表(JOIN)

ch_3_5.011.png

Python 数据导入入门

Python(pandas)中的 INNER JOIN

from sqlalchemy import create_engine
import pandas as pd
engine = create_engine('sqlite:///Northwind.sqlite')
df = pd.read_sql_query("SELECT OrderID, CompanyName FROM Orders 
INNER JOIN Customers on Orders.CustomerID = Customers.CustomerID", engine)
print(df.head())
   OrderID                CompanyName
0    10248  Vins et alcools Chevalier
1    10251       Victuailles en stock
2    10254          Chop-suey Chinese
3    10256     Wellington Importadora
4    10258               Ernst Handel
Python 数据导入入门

让我们来练习!

Python 数据导入入门

Preparing Video For Download...