我有一个表(cookie\u log),其中有每个用户在不同日期的多个条目。因此,我必须只获取条目在所有日期中通用的用户,其中一列具有authenticate where条件。
我的table结构像that:-
表名cookie\u log
.......................................................
cl_id user_id comment datetime
.......................................................
1 101 authenticate 2018-11-28 15:37:08
2 102 loggedin 2018-11-28 15:37:08
3 103 authenticate 2018-11-28 15:37:08
4 101 authenticate 2018-11-29 15:37:08
在此记录中,我必须获取那些在2018-11-28和2018-11-29日期都进行了身份验证的用户。我想要此输出
.................................
cl_id user_id comment
................................
1 101 authenticate
我尝试了下面的查询,但没有得到我想要的输出。
SELECT cookie_log.`cl_id`,cookie_log.`user_id` FROM `cookie_log`
where `comment`='login once authenticated' and (`datetime` like '%2018-11-28%')
and (`datetime` like '%2018-11-29%')
1条答案
按热度按时间nhaq1z211#
一种可能的方法是使用
HAVING
要有条件地过滤掉的子句: