高度なクエリ: テーブルのリレーションシップの活用

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 でのデータインポート入門

テーブルの結合

ch_3_5.007.png

Python でのデータインポート入門

テーブルの結合

ch_3_5.008.png

Python でのデータインポート入門

テーブルの結合

ch_3_5.009.png

Python でのデータインポート入門

テーブルの結合

ch_3_5.010.png

Python でのデータインポート入門

テーブルの結合

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...