Lazy loaded image
oracle 教程
00 分钟
2023-6-7
2024-7-30
type
status
date
slug
summary
tags
category
icon
password
comment
AI summary

Oralce SQL

登录 oracle

显示用户名

显示当前数据库的全称

显示Oracle中有多少种角色

查询数据库的表空间,一般是DBA用户去查

查询Oracle中所有的系统权限

查询Oracle中所有的对象权限

查看某个用户具有什么样的角色

查看某个用户(角色)具有什么样的系统权限?

查看某个用户(角色)具有什么样的对象权限?

创建表

根据已有的表创建新表
A:select * into table_new from test (使用旧表创建新表)
B:create table tab_new as select col1,col2… from test definition only<仅适用于Oracle>

删除表

重命名表

alter table 表名 rename to 新表名

增加字段

说明:alter table 表名 add (字段名 字段类型 默认值 是否为空);

修改字段

说明:alter table 表名 modify (字段名 字段类型 默认值 是否为空);

删除字段

说明:alter table 表名 drop column 字段名;
删除所有数据
上一篇
oracle indexing
下一篇
oracle DBA