Advanced querying: exploiting table relationships

Nhập dữ liệu vào Python: Giới thiệu

Hugo Bowne-Anderson

Data Scientist at DataCamp

Tables are linked

ch_3_5.003.png

Nhập dữ liệu vào Python: Giới thiệu

Tables are linked

ch_3_5.004.png

Nhập dữ liệu vào Python: Giới thiệu

Tables are linked

ch_3_5.005.png

Nhập dữ liệu vào Python: Giới thiệu

JOINing tables

ch_3_5.007.png

Nhập dữ liệu vào Python: Giới thiệu

JOINing tables

ch_3_5.008.png

Nhập dữ liệu vào Python: Giới thiệu

JOINing tables

ch_3_5.009.png

Nhập dữ liệu vào Python: Giới thiệu

JOINing tables

ch_3_5.010.png

Nhập dữ liệu vào Python: Giới thiệu

JOINing tables

ch_3_5.011.png

Nhập dữ liệu vào Python: Giới thiệu

INNER JOIN in Python (pandas)

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
Nhập dữ liệu vào Python: Giới thiệu

Let's practice!

Nhập dữ liệu vào Python: Giới thiệu

Preparing Video For Download...