简体   繁体   English

SQLAlchemy查询外键字段

[英]SQLAlchemy Query foreignkey field(s)

I am trying to write a view/SQLAlchemy query that will allow me to display data thats linked as a ForeignKey and also where I have a ManyToMany relationship 我正在尝试编写一个视图/ SQLAlchemy查询,该查询将允许我显示链接为ForeignKey的数据以及还有ManyToMany关系的位置

have the models.. 有模型..

#Samples
class Sample(Base):
    __tablename__ = 'samples'
    id = Column(Integer, primary_key=True)
    name = Column(Unicode)

    def __unicode__(self):
        return self.name

samples_to_customer = Table('samples_to_customer', Base.metadata,
  Column('customer_id', Integer, ForeignKey('customer.id')),
  Column('sample_id', Integer, ForeignKey('samples.id'))
  )

#Create a cusotmer model to store customer numbers
class Customer(Base):
    __tablename__ = 'customer'
    id = Column(Integer, primary_key=True)
    name = Column(Unicode, unique=True) #this will be the variable used to search the existing db
    customer_samples = relationship('Sample', secondary='samples_to_customer', backref='samples')
    sales_rep = Column(Integer, ForeignKey('rep.id'))
    Rep = relationship('Rep')

    def __unicode__(self):
        return self.name

# This model will have its own entry view/page a user logs on and enters notes (according to a customer
# number) they then get stored/saved onto the Customers account
class Note(Base):
    __tablename__ = 'note'
    id = Column(Integer, primary_key=True)
    name = Column(Unicode)
    pub_date = Column(Date)
    customer_no = Column(Integer, ForeignKey('customer.id'))
    customer = relationship('Customer')

    def __unicode__(self):
        return self.name

And the views.. 和意见..

@view_config(route_name='view_customer', renderer='templates/view_customer.jinja2')
def view_page(request):
    customer_no = request.matchdict['customer']
    cust_slcustm = DBSessionRO.query(Slcustm).filter(Slcustm.customer == customer_no).first()
    cust_customer = DBSessionRO.query(Custom).filter(Custom.cu_custref== customer_no).first()

    # Return a 404 if a result isn't found, slcustm and customer share one2one relationship on customer_no
    if cust_slcustm is None:
        return HTTPNotFound('No such customer')

    return dict(cust_slcustm=cust_slcustm, cust_customer=cust_customer)  

But I cant seem to write a query that will display every sample and note related to a customer number? 但是我似乎无法编写查询来显示与客户编号相关的每个样本和注释? If anyone could help I would be very grateful :) 如果有人可以帮助我,我将非常感激:)

Try this 尝试这个

class Note(Base):
    __tablename__ = 'note'
    id = Column(Integer, primary_key=True)
    name = Column(Unicode)
    pub_date = Column(Date)
    customer_no = Column(Integer, ForeignKey('customer.id'))
    customer = relationship('Customer', backref='notes')

@view_config(route_name='view_customer', renderer='templates/view_customer.jinja2')
def view_page(request):
    customer_no = request.matchdict['customer']
    cust = DBSessionRO.query(Customer).filter(Customer.id == customer_no).first()

    print "Sample :", cust.customer_sample
    print "Notes :", cust.notes

What ended up working was: 最终起作用的是:

#views.py
@view_config(route_name='view_customer', renderer='templates/view_customer.jinja2')
def view_page(request):
    customer_no = request.matchdict['customer']
    cust_slcustm = DBSessionRO.query(Slcustm).filter(Slcustm.customer == customer_no).first()
    cust_customer = DBSessionRO.query(Custom).filter(Custom.cu_custref== customer_no).first()
    cust_books = DBSessionRW.query(Customer).filter(Customer.name == customer_no).first()

    # Return a 404 if a result isn't found, slcustm and customer share one2one relationship on customer_no
    if cust_slcustm is None:
        return HTTPNotFound('No such customer')

    return dict(cust_slcustm=cust_slcustm, cust_customer=cust_customer, cust_books=cust_books)   

Then creating the template: 然后创建模板:

{% for sample in cust_books.customer_samples %}
  {{ sample.name }}
{% endfor %}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM