oracle常用語句或函式

2022-02-09 18:58:44 字數 461 閱讀 2438

建表改表

oracle常用函式

1、trunc(number,num_digits)

number 需要截尾取整的數字。 

num_digits 用於指定取整精度的數字。num_digits 的預設值為 0。

trunc()函式擷取時不進行四捨五入

2、oracle withas

用法3、修改字段精度

alter

table tb modify (name varchar2(20));

常用sql 語句

1.替換字串

replace(字串,'

原本內容

','想要替換成什麼

')

2、獲取系統時間

select sysdate from dual;   --2020/10/9 10:38:30

oracle常用語句 函式

一 常用語句 1 更新 update 表名 set 欄位1 value1 欄位2 value2 where 條件 2 插入 insert into 表名 欄位1 欄位2 欄位3 values value1 value2 value3 3 刪除資料 delete from 表名 where 條件 刪除...

oracle 常用語句

oracle 產看表空間 select total.name tablespace name free space,total space free space used space,total space from select tablespace name,sum bytes 1024 102...

oracle常用語句

drop tablespace crm online space including contents and datafiles 刪除表空間 drop user wuliu01 cascade 刪除使用者 exp orcl file d dmp 匯出資料庫 imp orcl file e alen...