sql Comandos de Oracle

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql Comandos de Oracle相关的知识,希望对你有一定的参考价值。

CREACION DE TABLAS
MOSTRAR TODAS LAS TABLAS
- select * from ALL_TABLES;

MOSTRAR LOS ATRIBUTOS DE UNA TABLA
- describe tabla;
- desc tabla;

CREAR TABLA
- create table tabla
(
atributo tipo_dato restriccion,
atributo tipo_dato restriccion,
atributo tipo_dato restriccion,
.
.
.
);

ELIMINAR TABLA
- drop table tabla;

AGREGAR CAMPOS
- alter table tabla
add campo tipo_dato;

MODIFICAR CAMPOS
- alter table tabla
modify campo tipo_dato;

ELIMINAR CAMPOS
- alter table tabla
drop column campo;

RESTRICCIONES
- NOT NULL:
alter table tabla
add campo tipo_dato not null;
||
alter table tabla
modify campo tipo_dato not null;

- UNIQUE:
alter table tabla
add constraint uk_nombre
unique(campo);

- CHECK:
alter table tabla
add constraint ck_nombre
check(condicion);

- PRIMARY KEY:
alter table tabla
add constraint pk_nombre
primary key(campo);

- FOREIGN KEY:
alter table tabla
add constraint fk_nombre
foreign key(campo) references tablaPK(campoPK);

以上是关于sql Comandos de Oracle的主要内容,如果未能解决你的问题,请参考以下文章

text CHULETA DE COMANDOS

powershell Comandos de docker

markdown Trucos para linea de comandos

markdown Comandos do Zypper,gerenciador de pacotes。

ruby Comandos varios para los contadores de Networking

text ng,ts no son reconocidos por la linea de comandos