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}

  • 相关阅读:
    java 排序
    spring 收藏博文
    转载:一位软件工程师的6年总结
    网站
    jdk配置环境变量的方法
    推荐桌游
    js 猜数字游戏
    html简易计算器的前端代码
    (转载)float与double中的精度问题
    jiaxiang
  • 原文地址:https://www.cnblogs.com/shunzdd/p/5585981.html
Copyright © 2011-2022 走看看