個人常用的sql語句 更新中

2022-03-20 10:31:33 字數 429 閱讀 6348

查詢字段內容不包含數字的記錄

select *  from 表名 where 字段 regexp '[0-9]' = 0

去除記錄中的空格

update 表名 set 欄位a = replace (欄位a, ' ', '');

在批量刪除時保留每月最後一天的資料

delete from 表名 where  date_format(時間字段,'%y-%m-%d') <> last_day(date_format(時間字段,'%y-%m-%d'));

//last_day()方法獲取當前月份最後一天的時間,通過對比時間字段篩選資料

在指定字段前後新增字首或者字尾

update 表名 set 字段 = concat('字首',字段,'字尾')

常用sql語句記錄 持續更新

常規表空間使用率查詢 select to char sysdate,yyyy mm dd hh24 mi ss from dual prompt tablespace set linesize 120 set pagesize 10000 col tablespace format a20 sele...

sql 語句 更新

1.只是查出來改掉 記得好像可以改多列 update 表名稱 set 列名稱 新值 where 列名稱 某值 例 update student set age 18 where name 李四 而且在sql裡,欄位是加單引號,而不是雙引號 2.更新多列 update 表名 set 列1名稱 新值,列...

SQL語句查詢(持續更新中)

這是我在學習過程中筆記,如果碰見有必要記錄的我會記錄在這篇部落格中,會持續更新,希望能夠幫到更多的人 在要查詢的變數前後新增 在where 後新增1 1 select year 時間的列名 signtime from 資料庫名稱 group by year 時間的列名 1.select year 時...