This commit is contained in:
wuaho 2021-09-13 12:01:44 +08:00
parent 03aafe645d
commit 74be7a6ed3

View File

@ -91,6 +91,9 @@ class XAnalysis:
elif comparator == 'like':
where.append(col.like(f'%{ftv[0]}%'))
elif comparator == 'in':
where.append(col.in_(ftv))
return where
def ltv_model_sql(self):