【常用】Oracle数据库中的数据类型转变(不定时更新)
int/bigint/smallint/decimal----->number
datetime----->varchar2(32)/date
varchar----->varchar2
timestamp----->timestamp
char----->char
float----->float
date----->date
commit:
DML语言:update,delete,insert into 等修改表中数据的需要用commit;
DDL语言:create table,drop table,alter table,truncate table,create index,drop index 等改变表结构的,就不需要使用commit;