has()关系的使用方法(更具可读性):
patients = Patient.query.filter(Patient.mother.has(phenoscore=10))
或加入(通常更快):
patients = Patient.query.join(Patient.mother, aliased=True) .filter_by(phenoscore=10)
欢迎分享,转载请注明来源:内存溢出
has()关系的使用方法(更具可读性):
patients = Patient.query.filter(Patient.mother.has(phenoscore=10))
或加入(通常更快):
patients = Patient.query.join(Patient.mother, aliased=True) .filter_by(phenoscore=10)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)