Create TAble 表1
(卡号 Varchar(10),
用户ID Varchar(10)
)
Create TAble 表2
(
日志 Varchar(1000)
)
insert into 表1 values('CAB001','0002')
insert into 表1 values('CAB002','1234')
insert into 表2 values('2015-10-28用户1234操作过XXXYYY')
insert into 表2 values('2015-10-29用户0002操作过888818188乱七八糟')
Select * from 表2,表1
where CHARINDEX(用户id,日志)>0
and 卡号 like '%CAB001%'
Select * from 表2,(Select * from 表1 where 卡号 like '%CAB001%') 表1
where CHARINDEX(用户id,日志)>0
天再高,踮起脚尖就能更接近阳光