- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有类似下面的查询
query = db.session.query(Attribute)
.select_from(Product)
.filter_by(category_id=some_id)
.join(Attribute)
哪个返回:
[(<Product 1>, <Attribute 1>),
(<Product 1>, <Attribute 3>), #two attributes for Product 1
(<Product 2>, <Attribute 2>),
(<Product 2>, <Attribute 5>), #two attributes for Product 2
...]
我需要一个查询来保留所有具有至少一个属性匹配特定 type
的产品和 value
值。在上面的示例中,如果 <Attribute 1>
是唯一满足这些条件的属性,结果应该是:
[(<Product 1>, <Attribute 1>), #Attribute1 met the conditions
(<Product 1>, <Attribute 3>)] #Other Product1 rows are thus kept
编辑:Product 和 Attribute 具有多对多关系,以下是模型:
class Product(db.Model):
id = db.Column(db.Integer, primary_key=True)
sku = db.Column(db.String(10), unique=True, nullable=False)
category_id = db.Column(db.Integer, db.ForeignKey('category.id'), nullable=False)
category = db.relationship('Category', backref=db.backref('products', lazy=True))
class ProductAttribute(db.Model):
product_id = db.Column(db.Integer, db.ForeignKey('product.id'), primary_key=True)
attribute_id = db.Column(db.Integer, db.ForeignKey('attribute.id'), primary_key
class Attribute(db.Model):
id = db.Column(db.Integer, primary_key=True)
type = db.String(db.String(40))
value = db.String(db.String(40))
最佳答案
解决这个问题的一种方法是使用 relationship.any
构造。
请在下面找到完整的示例代码,我在其中尝试猜测一个更完整的模型。即使它不完整,它也会给你一个正确方向的提示:
型号:
class Product(db.Model):
id = db.Column(db.Integer, primary_key=True)
sku = db.Column(db.String(10), unique=True, nullable=False)
category_id = db.Column(db.Integer, db.ForeignKey('category.id'), nullable=False)
category = db.relationship('Category', backref=db.backref('products', lazy=True))
# added this relationship definition
attributes = db.relationship("Attribute", secondary="product_attribute")
class ProductAttribute(db.Model):
product_id = db.Column(db.Integer, db.ForeignKey("product.id"), primary_key=True)
attribute_id = db.Column(
db.Integer, db.ForeignKey("attribute.id"), primary_key=True
)
class Attribute(db.Model):
id = db.Column(db.Integer, primary_key=True)
type = db.Column(db.String(40))
value = db.Column(db.String(40))
测试数据:
attrs = ac_b, ac_w, as_l, as_s, ah_y, ah_n = [
Attribute(type="color", value="black"),
Attribute(type="color", value="green"),
Attribute(type="size", value="large"),
Attribute(type="size", value="small"),
Attribute(type="healthy", value="yes"),
Attribute(type="healthy", value="not that much"),
]
prods = [
Product(sku="no-attribs", attributes=[]),
Product(sku="black-only", attributes=[ac_b]),
Product(sku="black-larg", attributes=[ac_b, as_l]),
Product(sku="white-col", attributes=[ac_w, as_s]),
Product(sku="no-colors", attributes=[ah_y, as_s]),
]
db.session.add_all(attrs + prods)
ANSWER:查询
query = (
db.session.query(Product, Attribute)
# .select_from(Product) # this could be removed if `Product` is included in the query above
.join(Attribute, Product.attributes)
# .filter_by(category_id=some_id) # this one can be added, but not used in tests
.filter(Product.attributes.any(
# HERE you can put any combination of filters on the 'Attribute' you need
and_(
Attribute.type == 'color',
Attribute.value == 'black',
)
))
)
生成的 SQL
:在 postgres 上它应该如下所示:
SELECT product.id,
product.sku,
attribute.id,
attribute.type,
attribute.value
FROM product
JOIN product_attribute AS product_attribute_1 ON product.id = product_attribute_1.product_id
JOIN attribute ON attribute.id = product_attribute_1.attribute_id
WHERE EXISTS
(SELECT 1
FROM product_attribute,
attribute
WHERE product.id = product_attribute.product_id
AND attribute.id = product_attribute.attribute_id
AND attribute.type = %(type_1)s
AND attribute.value = %(value_1)s)
查询结果:
从下面可以看出,从测试数据来看,结果涵盖了所有符合要求的产品的所有属性(有“color”=“black”):
(<Product(id=3, sku='black-larg')>, <Attribute(id=1, type='color', value='black')>)
(<Product(id=3, sku='black-larg')>, <Attribute(id=3, type='size', value='large')>)
(<Product(id=2, sku='black-only')>, <Attribute(id=1, type='color', value='black')>)
关于python - 连接表中的复杂过滤器 SQLAlchemy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66851805/
我正在尝试创建一个使用 UUID 作为主键的用户模型: from src.db import db # SQLAlchemy instance import sqlalchemy_utils impo
在 sqlalchemy 中,我试图合并表,然后使用 WHERE 和 ORDER_BY 创建别名 有点像 SELECT * FROM ( SELECT [TABLE_ONE].[SOME_ID]
我正在使用 SQL Alchemy(通过 Flask_sqlalchemy)将 Python 字典列表插入到 Postgres 数据库中。 其中一个表是所有唯一项目的列表(表 1),而第二个是与某个项
This source详细说明如何使用关联代理创建具有 ORM 对象值的 View 和对象。 但是,当我附加一个与数据库中现有对象匹配的值(并且所述值是唯一的或主键)时,它会创建一个冲突的对象,因此我
SQLAlchemy Core和SQLAlchemy ORM的目的有什么区别? 最佳答案 顾名思义,ORM是一个对象关系映射器:其目的是将数据库关系表示为Python对象。 核心是查询构建器。其目的是
带有ForeignKey的Column是否自动创建索引? 还是我需要手动添加index=True? some_field = Column(Integer, ForeignKey(SomeModel.
我有一个主数据库,每个客户自己的数据库连接存储在其中。 因此,每个客户端都使用2个db:main和它自己的db,必须确定其连接 对于每个http调用。我如何使用flask-sqlalchemy扩展名执
当我仅对类进行继承时,它才起作用 class User(Base): __tablename__ = ’users’ id = Column(Integer, primary_key=
从用户的角度来看,SQLAlchemy 的查询日志似乎有点过于冗长,有时甚至有点神秘: 2015-10-02 13:51:39,500 INFO sqlalchemy.engine.base.Engi
我正在尝试使用 wtforms.ext.sqlalchemy QuerySelectMultipleField 显示复选框列表,但我无法在 GET 的表单上显示模型数据。 这是我的models.py
我想为查询返回一个中继连接。使用标准的 graphene-sqlalchemy 你可以这样做: class Query(graphene.ObjectType): node = relay.N
我在 centos 7.5 虚拟机上部署了最新的 Airflow ,并将 sql_alchemy_conn 和 result_backend 更新到 postgresql 实例上的 postgres
我想将多个项目插入到一个表中,并在发生冲突时更新该表。这是我想出的以下内容 from sqlalchemy.dialects.postgresql import insert meta = MetaD
我有以下模型: class Item(Base): a = relationship() b = relationship() c = relationship() d
我有 presto 和 superset 设置。 presto 运行良好,可以通过命令访问: ./app/hadoop/setjdk8.sh;bin/presto-cli --server http:
我一直在寻找一种在 sqlalchemy 中使用 tsvector 的方法(就像 INTEGER 等其他方法一样),但到目前为止我还不清楚如何做到这一点。我读过可以使用 UserDefinedType
我正在使用 sqlalchemy(现在使用 sqlite,但稍后可能会改变)来构建一个数据库,其中插入的顺序和 rowids 很重要。我基本上有以下几点: class Message(Base):
给定一个对象,我想知道如何知道它是否是 sqlalchemy 映射模型的实例。 通常,我会使用 isinstance(obj, DeclarativeBase)。但是,在这种情况下,我没有可用的 De
我已经通读了查询文档,如果有办法从查询中获取表名,就看不到任何地方 - 例如如果我有 q = query(Users) ,我可以得到Users从 q 退出? 最佳答案 请注意,像您这样的事件简单查询可
我不确定如何定义create schema foo迁移?我的模型如下所示(我正在使用Flask-Migrate): class MyTable(db.Model): __tablename__
我是一名优秀的程序员,十分优秀!