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