“Buat tabel oracle” 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 tabel sebagai pilih

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

Jawaban yang mirip dengan “Buat tabel oracle”

Pertanyaan yang mirip dengan “Buat tabel oracle”

Lebih banyak jawaban terkait untuk “Buat tabel oracle” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya