oracle基本操作
–建立表空間
create tablespace itheima
datafile ‘c:\itheima.dbf’
size 100m
autoextend on
next 10m;
– 刪除表空間
drop tablespace itheima;
–建立使用者
create user itheima
identified by itheima
default tablespace itheima;
–建立表
create table person(
pid number(11),
name varchar2(10),
);
–新增一列
alter table person add (gender number(1));
–修改列型別
alter table person modify gender char(1);
–修改列名稱
alter table person rename column gender to sex;
–刪除一列
alter table person drop column sex;
– 新增一條記錄
insert into person(pid,pname) values (1,‘小明’);
insert into person(pid,pname) values(2,‘小紅’);
commit;
–查詢
select * from person;
–修改
update person set pname=‘小馬哥’ where pid=1;
commit;
–刪除
delete from person;
drop table person;
truncate table person;–先刪除,再建立一張空表
–序列 預設從1開始,依次遞增
create sequence s_person;
select s_person.nextval from dual;
–新增
insert into person(pid,pname) values(s_person.nextval,‘大明’);
commit;
相關文章
- Oracle 重置密碼及基本操作Oracle密碼
- Oracle dos連線資料庫基本操作Oracle資料庫
- Oracle 操作表結構基本語法及示例Oracle
- MyBatis入門學習-連線oracle實現CURD基本操作MyBatisOracle
- MongoDB基本操作MongoDB
- webpack 基本操作Web
- mongo基本操作Go
- SQL基本操作SQL
- ElasticSearch - 基本操作Elasticsearch
- candance 基本操作
- svn基本操作
- Hash基本操作
- python基本操作Python
- FFMPEG基本操作
- dos 基本操作
- 基本操作題
- Laravel 基本操作Laravel
- Git基本操作Git
- VSCode基本操作VSCode
- Docker基本操作Docker
- redis基本操作Redis
- linux基本操作Linux
- ElasticSearch基本操作Elasticsearch
- HBase 基本操作
- Go 操作 Redis 的基本操作GoRedis
- oracle 基本查詢Oracle
- 坐下坐下,基本操作(ZooKeeper 操作篇)
- Clion基本常用操作
- Redis管理基本操作Redis
- Git 常用基本操作Git
- Linux基本操作命令Linux
- MySQL基本操作命令MySql
- Docker的基本操作Docker
- MySQL的基本操作MySql
- Linux基本操作指令Linux
- kvm基本操作命令
- Linux 基本操作命令Linux
- Linux基本操作——1Linux