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

2021-10-05 00:17:03 字數 683 閱讀 9029

這是我在學習過程中筆記,如果碰見有必要記錄的我會記錄在這篇部落格中,會持續更新,希望能夠幫到更多的人

在要查詢的變數前後新增 %

在where 後新增1 = 1

select year(時間的列名)signtime from 資料庫名稱 group by year(時間的列名)

1.select year(時間的列名)signtime from 資料庫名稱

如果沒有使用group by year(時間的列名)進行分組的話,就不會過濾掉重複的年份

我自己在設定的時候就將乙個列名設為 describe 結果在執行的時候一直報錯

當然,如果非要將列名設定為關鍵字也不是沒辦法,那就在sql語句上對應的列名加上 `` 如:

select

`describe

`from user_table where id =

#

精妙SQL語句介紹 持續更新

說明 複製表 只複製結構,源表名 a 新錶名 b sql select into b from a where 1 1 說明 拷貝表 拷貝資料,源表名 a 目標表名 b sql insert into b a,b,c select d,e,f from b sql select a.title,a....

SQL語句小tips(持續更新)

判斷people id是否是32為字母組成的,統計不滿足要求的資料 select count if binary people id not regexp 0 9a z true,null as people id illegality cnt from people day if expr1 ex...

常用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...