“oracle buat tabel sebagai pilih” Kode Jawaban

Buat tabel 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 Buat sebagai Pilih

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 buat tabel sebagai pilih

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

Jawaban yang mirip dengan “oracle buat tabel sebagai pilih”

Pertanyaan yang mirip dengan “oracle buat tabel sebagai pilih”

Lebih banyak jawaban terkait untuk “oracle buat tabel sebagai pilih” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya