Wspólne operatory relacji
W tym rozdziale omówimy operatory, które opierają się na relacjach.
__eq __ ()
Powyższy operator to porównanie „równa się” wiele do jednego. Linia kodu tego operatora jest pokazana poniżej -
s = session.query(Customer).filter(Invoice.invno.__eq__(12))
Równoważne zapytanie SQL dla powyższego wiersza kodu to -
SELECT customers.id
AS customers_id, customers.name
AS customers_name, customers.address
AS customers_address, customers.email
AS customers_email
FROM customers, invoices
WHERE invoices.invno = ?
__ne __ ()
Ten operator to porównanie „nie równa się” wiele do jednego. Linia kodu tego operatora jest pokazana poniżej -
s = session.query(Customer).filter(Invoice.custid.__ne__(2))
Odpowiednik zapytania SQL dla powyższego wiersza kodu podano poniżej -
SELECT customers.id
AS customers_id, customers.name
AS customers_name, customers.address
AS customers_address, customers.email
AS customers_email
FROM customers, invoices
WHERE invoices.custid != ?
zawiera ()
Ten operator jest używany dla kolekcji jeden do wielu, a poniżej podany jest kod zawiera () -
s = session.query(Invoice).filter(Invoice.invno.contains([3,4,5]))
Równoważne zapytanie SQL dla powyższego wiersza kodu to -
SELECT invoices.id
AS invoices_id, invoices.custid
AS invoices_custid, invoices.invno
AS invoices_invno, invoices.amount
AS invoices_amount
FROM invoices
WHERE (invoices.invno LIKE '%' + ? || '%')
każdy()
dowolny operator () jest używany do kolekcji, jak pokazano poniżej -
s = session.query(Customer).filter(Customer.invoices.any(Invoice.invno==11))
Równoważne zapytanie SQL dla powyższego wiersza kodu pokazano poniżej -
SELECT customers.id
AS customers_id, customers.name
AS customers_name, customers.address
AS customers_address, customers.email
AS customers_email
FROM customers
WHERE EXISTS (
SELECT 1
FROM invoices
WHERE customers.id = invoices.custid
AND invoices.invno = ?)
ma ()
Ten operator jest używany do odwołań skalarnych w następujący sposób -
s = session.query(Invoice).filter(Invoice.customer.has(name = 'Arjun Pandit'))
Równoważne zapytanie SQL dla powyższego wiersza kodu to -
SELECT invoices.id
AS invoices_id, invoices.custid
AS invoices_custid, invoices.invno
AS invoices_invno, invoices.amount
AS invoices_amount
FROM invoices
WHERE EXISTS (
SELECT 1
FROM customers
WHERE customers.id = invoices.custid
AND customers.name = ?)