SQLAlchemy Core - Utilizzo di più tabelle

Una delle caratteristiche importanti di RDBMS è stabilire relazioni tra le tabelle. Le operazioni SQL come SELECT, UPDATE e DELETE possono essere eseguite sulle tabelle correlate. Questa sezione descrive queste operazioni utilizzando SQLAlchemy.

A tale scopo, vengono create due tabelle nel nostro database SQLite (college.db). La tabella studenti ha la stessa struttura data nella sezione precedente; mentre la tabella degli indirizzi hast_id colonna a cui è mappato id column in students table utilizzando il vincolo di chiave esterna.

Il codice seguente creerà due tabelle in college.db -

from sqlalchemy import create_engine, MetaData, Table, Column, Integer, String, ForeignKey
engine = create_engine('sqlite:///college.db', echo=True)
meta = MetaData()

students = Table(
   'students', meta, 
   Column('id', Integer, primary_key = True), 
   Column('name', String), 
   Column('lastname', String), 
)

addresses = Table(
   'addresses', meta, 
   Column('id', Integer, primary_key = True), 
   Column('st_id', Integer, ForeignKey('students.id')), 
   Column('postal_add', String), 
   Column('email_add', String))

meta.create_all(engine)

Il codice sopra si tradurrà in query CREATE TABLE per studenti e tabella indirizzi come di seguito -

CREATE TABLE students (
   id INTEGER NOT NULL,
   name VARCHAR,
   lastname VARCHAR,
   PRIMARY KEY (id)
)

CREATE TABLE addresses (
   id INTEGER NOT NULL,
   st_id INTEGER,
   postal_add VARCHAR,
   email_add VARCHAR,
   PRIMARY KEY (id),
   FOREIGN KEY(st_id) REFERENCES students (id)
)

Le schermate seguenti presentano molto chiaramente il codice sopra:

Queste tabelle vengono popolate con i dati eseguendo insert() methoddi oggetti da tavolo. Per inserire 5 righe nella tabella degli studenti, puoi utilizzare il codice riportato di seguito:

from sqlalchemy import create_engine, MetaData, Table, Column, Integer, String
engine = create_engine('sqlite:///college.db', echo = True)
meta = MetaData()

conn = engine.connect()
students = Table(
   'students', meta, 
   Column('id', Integer, primary_key = True), 
   Column('name', String), 
   Column('lastname', String), 
)

conn.execute(students.insert(), [
   {'name':'Ravi', 'lastname':'Kapoor'},
   {'name':'Rajiv', 'lastname' : 'Khanna'},
   {'name':'Komal','lastname' : 'Bhandari'},
   {'name':'Abdul','lastname' : 'Sattar'},
   {'name':'Priya','lastname' : 'Rajhans'},
])

Rows vengono aggiunti nella tabella degli indirizzi con l'aiuto del seguente codice -

from sqlalchemy import create_engine, MetaData, Table, Column, Integer, String
engine = create_engine('sqlite:///college.db', echo = True)
meta = MetaData()
conn = engine.connect()

addresses = Table(
   'addresses', meta, 
   Column('id', Integer, primary_key = True), 
   Column('st_id', Integer), 
   Column('postal_add', String), 
   Column('email_add', String)
)

conn.execute(addresses.insert(), [
   {'st_id':1, 'postal_add':'Shivajinagar Pune', 'email_add':'[email protected]'},
   {'st_id':1, 'postal_add':'ChurchGate Mumbai', 'email_add':'[email protected]'},
   {'st_id':3, 'postal_add':'Jubilee Hills Hyderabad', 'email_add':'[email protected]'},
   {'st_id':5, 'postal_add':'MG Road Bangaluru', 'email_add':'[email protected]'},
   {'st_id':2, 'postal_add':'Cannought Place new Delhi', 'email_add':'[email protected]'},
])

Nota che la colonna st_id nella tabella degli indirizzi fa riferimento alla colonna id nella tabella degli studenti. Ora possiamo usare questa relazione per recuperare i dati da entrambe le tabelle. Vogliamo recuperarename e lastname dalla tabella degli studenti corrispondente a st_id nella tabella degli indirizzi.

from sqlalchemy.sql import select
s = select([students, addresses]).where(students.c.id == addresses.c.st_id)
result = conn.execute(s)

for row in result:
   print (row)

Gli oggetti selezionati si tradurranno efficacemente nella seguente espressione SQL che unisce due tabelle su una relazione comune -

SELECT students.id, 
   students.name, 
   students.lastname, 
   addresses.id, 
   addresses.st_id, 
   addresses.postal_add, 
   addresses.email_add
FROM students, addresses
WHERE students.id = addresses.st_id

Questo produrrà un output estraendo i dati corrispondenti da entrambe le tabelle come segue:

(1, 'Ravi', 'Kapoor', 1, 1, 'Shivajinagar Pune', '[email protected]')
(1, 'Ravi', 'Kapoor', 2, 1, 'ChurchGate Mumbai', '[email protected]')
(3, 'Komal', 'Bhandari', 3, 3, 'Jubilee Hills Hyderabad', '[email protected]')
(5, 'Priya', 'Rajhans', 4, 5, 'MG Road Bangaluru', '[email protected]')
(2, 'Rajiv', 'Khanna', 5, 2, 'Cannought Place new Delhi', '[email protected]')