溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

oracle常用的一些sql命令

發(fā)布時(shí)間:2020-04-28 20:00:12 來(lái)源:網(wǎng)絡(luò) 閱讀:387 作者:jiazhipeng12 欄目:關(guān)系型數(shù)據(jù)庫(kù)

//查看系統(tǒng)當(dāng)前時(shí)間   HH24 24小時(shí)制  MI是正確的分鐘

select to_char(sysdate,'yyyy-mm-dd HH24:MI:SS') from dual

//HH非24   mm不區(qū)分大小寫 日期中MM系統(tǒng)認(rèn)為是月份

select to_char(sysdate,'yyyy-mm-dd HH:MM:SS') from dual

//報(bào)告TIMESTAMP數(shù)據(jù)類型格式的系統(tǒng)日期。

select SYSTIMESTAMP from dual; 

//查詢當(dāng)前登錄用戶

select username from user_users

show user

//查看表結(jié)構(gòu)(字段數(shù)據(jù)類型)

desc user_users

//查詢當(dāng)前用戶所擁有的表

select table_name from  user_tables

//忘記密碼登錄

打開(kāi)cmd窗口,輸入 sqlplus / as sysdba 

//遠(yuǎn)程連接

gb/ruiyuan@192.168.0.210/orcl

//創(chuàng)建序列

create sequence 序列名

  start with 起始序列

  increment by 每次增加的值

序列名.nextval(下一個(gè)序列)

序列名.currval(當(dāng)前序列)

//創(chuàng)建回話臨時(shí)表數(shù)據(jù)

create global temporary table 表 as 另一張表數(shù)據(jù) on commit preserve rows;(可以復(fù)制原表中數(shù)據(jù),比較常用的就是這個(gè)。)



//添加字段注釋(表注釋)

comment on column tmp_xian.id is '主鍵'

comment on column tmp_xian.name is '最大用戶名'

COMMENT ON TABLE TABLENAME IS '用戶表'; 


//varchar2最大長(zhǎng)度4000bite   char(2000bite)


//查看前500行數(shù)據(jù)

select * from T_PUB_DOWNLOAD_DETAIL where rownum<500

//count(*) 和count(1) 效率結(jié)果都一樣   count(name)統(tǒng)計(jì)name列不為空的記錄

select count(*) from table;   count(1)

  

//date 日期時(shí)間(精確到秒)   timestamp(精確到小數(shù)秒)


//union 表鏈接(篩選重復(fù)記錄)   union all(簡(jiǎn)單的2個(gè)表結(jié)果合并)   union all效率高


//LTRIM(字串):將字串左邊的空格移除。   RTRIM(字串): 將字串右邊的空格移除。   TRIM(字串): 將字串開(kāi)頭和末尾的空格移除。   ALLTRIM(字串):將字串左右邊兩邊的空格移除。


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI