今天乙個現場新建了兩個部分,學生和老師,既有父級又有子級部門,乙個字段包含改部門的id(如0-21-49,0-22-142),現如今要把這個id去除(就是0-21-49,0-22-142-改為0-49,0-142),以下是修改的sql
select replace(deptcode,'-21-','-') from sys_department where deptcode like '%-21-%';--查詢總共有多少需要替換
select replace(deptcode,'-22-','-') from sys_department where deptcode like '%-22-%';
update sys_department set deptcode=replace(deptcode,'-21-','-') where deptcode like '%-21-%';--替換這個欄位的內容
update sys_department set deptcode=replace(deptcode,'-22-','-') where deptcode like '%-22-%';
redis 中乙個字段 修改map redis原理
redis單點吞吐量 單點tps達到8萬 秒,qps達到10萬 秒。redis的5中儲存型別 string list set map hash stored set redis的string型別 能表達3中型別 字串 整數和浮點數。根據場景相互間自動轉型,並且根據需要選取底層的承載方式 value內...
mysql多表乙個字段
先執行這三個 show variables like group concat max len 查詢大小 set global group concat max len 10240000 設定大小滿足執行後能夠存放所有的插入語句 set session group concat max len 10...
oracle批量更新乙個表中的乙個字段
最近遇到乙個sql問題。老大們讓我把乙個表中的一列資料做更新。更新的內容和對照表有給提供。後來仔細檢視資料 總結出這樣的sql 語句。update 更新表 b set b.需要更新的字段 select a.參考更新字段 from 對照表 a where a.對照表舊欄位 b.更新表需要更新的字段 注...