sql server使用雜記

來源:互聯網
上載者:User

標籤:http   io   ar   使用   for   sp   檔案   資料   on   

SqlServer匯出資料庫

navcat for sql server中開啟串連,開啟資料庫,右鍵--資料轉送,常規選項卡--模式選擇dbo,目標選擇串連(選擇你建立的庫)或者檔案(匯出你要的sql檔案位置),點擊開始

 

stuff使得表

CUSTOMER

1   shz

2   sz

1   Chinese

轉為

CUSTOMER

1  shz,Chinese

2  sz

select NO,stuff((select ‘,‘ + LOGIN_NAME from CUSTOMER where NO = a.NO for xml path(‘‘)),1,1,‘‘)  from CUSTOMER  a

 

預存程序(返回記錄列表)

 PROCEDURE [dbo].[get_customer]
@No varchar(10),
@beginTime varchar(19),
@endTime varchar(19)
AS
BEGIN
select   no, loginName,age    where  CONVERT(varchar, open_time, 120) between @beginTime  and @endTime  and [email protected]
 ORDER BY info.agent_no;
END

hibernate調用預存程序(其中Query不支援預存程序的分頁,當然可以將分頁寫入預存程序中)

public List<Customer> getAllCustomer(final String No,final Date beginTime,final Date endTime) {
        return (List<Customer>) getHibernateTemplate().execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                Query query = session.createSQLQuery("{CALL get_customer(:parm1, :parm2, :parm3)}");
                query.setParameter("parm1", agentNo);
                query.setParameter("parm2", XADateUtil.getDateW3CFormat(beginTime));
                query.setParameter("parm3", XADateUtil.getDateW3CFormat(endTime));
                List arr =    query.list();
                List<Customer> list =    new ArrayList();
                if(arr==null)return null;
                for (int i = 0; i < arr.size(); i++) {
                    Object[] ob = (Object[]) arr.get(i);
                    Customerpl = new Customer();
                    pl.setNo((String) ob[0]);
                    pl.setLoginName((String) ob[1]);
                    list.add(pl);
                }
                return list;
            }
        });
    }

sql server使用雜記

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.