oracle系列表操作基础

Posted ICE_Inspire

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle系列表操作基础相关的知识,希望对你有一定的参考价值。

支持的数据类型:

字符型
char 定长 最大2000
varchar2() 变长 最大4000
clob 字符型大对象 最大4G

数字型
number范围 -10的38次方到10的+38次方;
number(5,2) 一个小数,有效位5个,小数点后2个数字
number(5) 表示一个5位的整数

日期类型
date
timestamp

二进制数据
blob 保密性较高,存入数据库/其他情况,保持在文件服务器,数据库只存文件路径

建表:

create table student(
stuId varchar2(10),
age number(2),
birthday date
)

--添加一个字段
alter table student add(name varchar2(10));
--修改字段长度
alter table student modify (name varchar2(20));

null值:is null , is not null
select * from student t where t.name is not null;

savepoint 保存点的使用

SQL> savepoint firstPoint;
Savepoint created

delete from student;

rollback to firstPoint;

drop from student;
delete from student where age>10;
truncate table student;--删除所有记录,表结构还在,不写日志,速度极快

简单查询:

列别名,函数nvl
select t.age "年龄" ,nvl( t.age,0) "年龄为null显示0",t.rowid from STUDENT t;
字符串连接:||
select t.name||‘-‘|| t.age from student t;

like操作符:
%:任意0到多个字符
_:单个任意字符

 

以上是关于oracle系列表操作基础的主要内容,如果未能解决你的问题,请参考以下文章

Oracle系列-锁表与解锁解决方案(基础版)

03.风哥Oracle数据库入门必备Linux基础系列视频教程(Oracle零基础教程)

Oracle 基础系列之1.2 oracle的基本使用

Oracle系列:(22)视图

100天精通Oracle-实战系列(第11天)Oracle RMAN 基础配置和常用命令

oracle学习笔记系列------oracle操作例子的专用表