PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

SQLAlchemy wiele kluczy obcych w jednej zmapowanej klasie do tego samego klucza podstawowego

Próbowałem usunąć cudzysłowy z obcych_kluczy i zrobić z nich listę. Z oficjalnej dokumentacji na temat Relationship Configuration: Handling Multiple Join Paths

Zmieniono w wersji 0.8:relationship() może rozwiązać niejednoznaczność między obcymi kluczowymi celami na podstawie foreign_keys sam argument; primaryjoin argument nie jest już potrzebny w tej sytuacji.

Poniższy samodzielny kod działa z sqlalchemy>=0.9 :

from sqlalchemy import create_engine, Column, Integer, String, ForeignKey
from sqlalchemy.orm import relationship, scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base

engine = create_engine(u'sqlite:///:memory:', echo=True)
session = scoped_session(sessionmaker(bind=engine))
Base = declarative_base()

#The business case here is that a company can be a stakeholder in another company.
class Company(Base):
    __tablename__ = 'company'
    id = Column(Integer, primary_key=True)
    name = Column(String(50), nullable=False)

class Stakeholder(Base):
    __tablename__ = 'stakeholder'
    id = Column(Integer, primary_key=True)
    company_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    stakeholder_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    company = relationship("Company", foreign_keys=[company_id])
    stakeholder = relationship("Company", foreign_keys=[stakeholder_id])

Base.metadata.create_all(engine)

# simple query test
q1 = session.query(Company).all()
q2 = session.query(Stakeholder).all()


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zduplikowana wartość klucza IntegrityError narusza ograniczenie unikalności — django/postgres

  2. Jak zainstalować PostgreSQL 12 na Ubuntu 20.04 DigitalOcean?

  3. Bardziej niezawodne zestawienia z obsługą ICU w PostgreSQL 10

  4. Zmień kodowanie bazy danych PostgreSql

  5. Funkcja usuwania akcentów w postgreSQL