美文网首页
查询每个月的数据从月头到下个月头

查询每个月的数据从月头到下个月头

作者: a_foo | 来源:发表于2017-02-05 17:04 被阅读0次

    select to_char(t.create_date,'yyyy-mm-dd hh24:mi:ss')time from fs_s01_act_lhl_record t where  t.create_date >=to_date(to_char(add_months(trunc(sysdate),?),'yyyy/mm')||'/01','yyyy/mm/dd')"+

    "  and t.create_date< to_date(to_char(add_months(trunc(sysdate),?),'yyyy/mm')||'/01','yyyy/mm/dd')"+

    "and t.accounts=? and t.activity_no=? ORDER BY T.CREATE_DATE ASC "

    相关文章

      网友评论

          本文标题:查询每个月的数据从月头到下个月头

          本文链接:https://www.haomeiwen.com/subject/uyueittx.html