“Salin tabel postgres” Kode Jawaban

tabel salin postgres dari satu skema ke skema lainnya

create table schema2.the_table (like schema1.the_table including all);
insert into schema2.the_table
select * 
from schema1.the_table;
Bored Bison

Salin tabel postgres

CREATE TABLE new_table AS 
SELECT
*
FROM
    existing_table
WHERE
    condition;
Expensive Eland

Jawaban yang mirip dengan “Salin tabel postgres”

Pertanyaan yang mirip dengan “Salin tabel postgres”

Lebih banyak jawaban terkait untuk “Salin tabel postgres” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya