“Oracle Create Table como selecione” Respostas de código

Crie a tabela Oracle

CREATE TABLE ot.persons(
    person_id NUMBER GENERATED BY DEFAULT AS IDENTITY,
    first_name VARCHAR2(50) NOT NULL,
    last_name VARCHAR2(50) NOT NULL,
    PRIMARY KEY(person_id)
);
Wrong Willet

Oracle Crie como selecionado

CREATE TABLE my_table AS
SELECT * FROM another_table t
WHERE 1=2 --delete the where condition if you also want the data
Wrong Willet

Oracle Create Table como selecione

CREATE TABLE new_table
  AS (SELECT * FROM old_table);
Helpful Heron

Respostas semelhantes a “Oracle Create Table como selecione”

Perguntas semelhantes a “Oracle Create Table como selecione”

Mais respostas relacionadas para “Oracle Create Table como selecione” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código