zoukankan      html  css  js  c++  java
  • 工作中用到过的sql,权当分享给对sql头疼的银儿

    select t.*, t.rowid from t_dept_type t 部门
    select t.*, t.rowid from t_company t 公司
    select t.*, t.rowid from t_employees t 员工

    select
    a.departmentid,
    a.userid,
    a.datecreated,
    a.calltime
    from cbssys.DAILPHONE_CALLBACK a
    left join cbssys.DAILPHONE_CALLAUTH b
    on a.CALLSID=b.ALLCALLSID
    where a.compayid='1' order by a.datecreated DESC

    select
    (select t.dept_type_name from t_dept_type t where t.dept_type_id=a.departmentid),
    (select e.emp_name from t_employees e where e.emp_id=a.userid),
    a.datecreated,
    a.calltime
    from cbssys.DAILPHONE_CALLBACK a
    left join cbssys.DAILPHONE_CALLAUTH b
    on a.CALLSID=b.ALLCALLSID
    where a.compayid='1' and a.userid='1' order by a.datecreated DESC

    select
    (select t.dept_type_name from t_dept_type t where t.dept_type_id=a.departmentid),
    (select e.emp_name from t_employees e where e.emp_id=a.userid),
    a.datecreated,
    a.calltime
    from cbssys.DAILPHONE_CALLBACK a
    left join cbssys.DAILPHONE_CALLAUTH b
    on a.CALLSID=b.ALLCALLSID
    where a.compayid='1'
    and a.userid='1'
    order by a.datecreated DESC
    select
    (select t.DEPT_TYPE_NAME from T_DEPT_TYPE t where t.DEPT_TYPE_ID=a.DEPARTMENTID) depart,
    (select e.EMP_NAME from T_EMPLOYEES e where e.EMP_ID=a.USERID) euser,
    a.DATECREATED,
    a.CALLTIME
    from CBSSYS.DAILPHONE_CALLBACK a
    left join CBSSYS.DAILPHONE_CALLAUTH b
    on a.CALLSID=b.ALLCALLSID
    where a.COMPAYID='1'
    order by a.DATECREATED DESC

    callRecords cusTell


    #{USERID,jdbcType=NUMERIC}

  • 相关阅读:
    [高级软件工程教学]总成绩排行榜(12.20更新)
    [高级软件工程教学]团队Alpha阶段成绩汇总
    ab & webbench
    httpClient 3
    xpath 定位补充
    命令补充
    feed4testng
    自动化测试架构整理
    识别元素
    appium小例子
  • 原文地址:https://www.cnblogs.com/shunzdd/p/5585981.html
Copyright © 2011-2022 走看看