select MOBILE from local_member where ( (FIRSTLOGINTIME between to_date(2010-2-1 00:00:00,'yyyy-mm-dd') and to_date(2010-2-28 23:59:59,'yyyy-mm-dd')) and ( lASTLOGINTIME between to_date(2010-2-1 00:00:00,'yyyy-mm-dd') and to_date(2010-2-28 23:59:59,'yyyy-mm-dd')))
select MOBILE from local_member where ( (FIRSTLOGINTIME between to_date('20100201 00:00:00','yyyymmdd hh24:mi:ss') and to_date('20100228 23:59:59','yyyymmdd hh24:mi:ss')) and ( lASTLOGINTIME between to_date('20100201 00:00:00','yyyymmdd hh24:mi:ss') and to_date('20100228 23:59:59','yyyymmdd hh24:mi:ss')))
裴裟曼依人
2024-10-11 10:33:41
select MOBILE from local_member where ( (FIRSTLOGINTIME between to_date('2010-2-1 00:00:00','yyyy-mm-dd hh24:miss') and to_date('2010-2-28 23:59:59','yyyy-mm-dd hh24:mi:ss')) and ( lASTLOGINTIME between to_date('2010-2-1 00:00:00','yyyy-mm-dd hh24:mi:ss') and to_date('2010-2-28 23:59:59','yyyy-mm-dd hh24:mi:ss')))
永不言弃
2024-10-11 09:15:48
select MOBILE from local_membe where FIRSTLOGINTIME between to_date('1980-06-04','yyyy-mm-dd') and to_date('1987-07-09','yyyy-mm-dd'); 如果要加时分秒应该 to_date('2010-2-28 23:59:59','yyyy-mm-dd hh24:mi:ss')