mysql 如何在乙個字段記憶體取多個資料。看**釋
在 investorid 欄位中用逗號 間隔多個資料
如何存:
jsp 頁面如下:需求說明:如果6613,與34729 打鉤則把他們存入到資料庫investorid 字段 內
jsp: jquery **
後台**:
string strings=null; //定義空參
string parametervalues = request.getparametervalues("zinvestorid"); //獲取jsp上name="zinvestorid"的陣列
if (parametervalues!=null&&!parametervalues.equals("")) else
}chairman.setinvestorid(strings);//把for迴圈之後的 strings 傳入
chairmanservice.insertselective(chairman); //執行新增方法,資料存入結束 }
資料取出後台**
listzlist = chairmanservice.querychairmanall(casecode); //查詢investorid 欄位中的資料6613,34729
for (int i = 0; i < zlist.size(); i++)
if(!investorid4.equals(""))
zlist.get(i).setinvestorid(investorid4);//把獲取姓名的investorid4 傳入
}request.setattribute("list", zlist);返回zlist
前台**
$ 頁面展示
mysql多表乙個字段
先執行這三個 show variables like group concat max len 查詢大小 set global group concat max len 10240000 設定大小滿足執行後能夠存放所有的插入語句 set session group concat max len 10...
mysql乙個欄位為空時使用另乙個字段排序
表中有兩個日期欄位createdate,updatedate。其中updatedate可以為空,要求使用updatedate排序,如果updatedate為空則使用createdate排序,結果要順序排下來。按照常規方法 這樣的結果是為空的資料排在了最下面,不符合要求。這樣試試 這樣排的結果是先按u...
mysql 乙個字段多條記錄的拼接
首先,我拿到了大概這樣一堆資料,但是呢 我要把某乙個欄位的所有值拼接起來。之前大家應該都寫過 count sum等聚合函式,直接將值進行加減求數量等操作。但是將值拼起來似乎很難。原始sql select from cooperation cooperationwork where cooperati...