标签: php mysql sql-like and-operator
使用MySQL:
SELECT * FROM Transactions WHERE userID = 4 and month(date)>11 and cat2 regexp '%gas stations%|%food%|%restaurants%'
我试图获取12月份用户4的交易,这些交易具有为类别2列出的三个值(cat2)。我正在获得我想要的那些交易,但是在所有其他月份都有三个相应类别2的交易。我怎样才能过滤掉所有这些?
cat2