mysql資料庫中小常識

2022-05-04 02:18:08 字數 541 閱讀 5670

1、去掉mysql資料中某字段的值中間的空格

update tablename 

set 列名=replace(列名,空格,『』)

where 列名 like '% %'

update student 

set sname=replace(sname,' ','')

where sname like '% %'

這裡用到了替換函式replace(列名,from_str,to_str),把欄位名的值從from_str轉換到to_str

2、去掉mysql資料庫中某欄位後面的空格

update tablename

set 列名=trim(列名)

update student 

set sname=trim(sname)

3、獲取某字段的後幾位

select substr('欄位名',-n) from 表名 -- n表示需要讀取的位數

資料庫常識

資料儲存的發展史,最開始由手動管理,後來發展為檔案管理。檔案儲存的缺點 1.在儲存資料時,沒有一定的結構 2.不便於修改資料 3.資料越來越多,檔案容易丟失 後來發展為使用資料庫進行資料的儲存和管理。tcp協議的埠號 1521 oracle預設的 http協議的埠號 8080 sid為資料庫的唯一識...

資料庫常識(小細節)

insert可以插入部分字段,其餘字段自動為null,刪除表的語句是 drop table if exists 表名 12.表的複製語句是create table emp2 as select empno,ename from emp 更新語句是update dept1 set loc shangh...

資料庫sql中小方法

upper name 將字段name中所有含字母變成全大寫。lower name 將字段name中所有含字母變為全小寫。trim 函式 去除資料中的空格。rtrim 代表去除右邊的空格,ltrim 代表去除左邊的空格 instr函式 字元查詢函式 1 instr string1,string2 in...