作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
尽管我在 group_by 中提到了上述列,但为什么我会收到标题错误。以下是我的查询
products = session
.query(User) \
.join(User.products) \
.join(Product.productitems) \
.values( Product.title.label('title'),(func.count(ProductItem.id)).label('total')) \
.group_by(Product.id,Product.title) \
.order_by(Product.created_date)
模型类
class User(UserMixin , Base):
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
title = Column(CHAR(3), nullable = True)
class Product(Base):
__tablename__ = 'products'
id = Column(Integer, primary_key =True)
title = Column(String(250), nullable = False)
..
user_id = Column(Integer, ForeignKey('users.id'))
user = relationship('User',backref=backref("products", cascade="all, delete-orphan"),lazy='joined')
class ProductItem(Base):
__tablename__ ='product_items'
id = Column(Integer , primary_key = True)
...
product_id = Column(Integer, ForeignKey('products.id'))
product = relationship('Product',backref=backref("productitems", cascade="all, delete-orphan"),lazy='joined' )
从控制台,我可以看到查询返回
SELECT
products.title AS title
,COUNT(product_items.id) AS total
FROM
users
JOIN products ON users.id = products.user_id
JOIN product_items ON products.id = product_items.product_id
然后在 group_by 上出现错误而中断。请问这是什么要求?任何帮助将不胜感激。
最佳答案
SQLalchemy 要求 values
是链中的最后一件事,因为它不返回查询以继续。您需要做的可能是(未经测试的);
products = session.query(User) \
.join(User.products) \
.join(Product.productitems) \
.group_by(Product.id, Product.title, Product.created_date) \
.order_by(Product.created_date) \
.values( Product.id.label('id'), \
Product.title.label('title'), \
(func.count(ProductItem.id)).label('total'))
关于python - 列 "Column"必须出现在 GROUP BY 子句中 -- SQLAlchemy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35412072/
我是一名优秀的程序员,十分优秀!