“Kopiuj strukturę tabeli z PostgreSQL do MySQL” Kod odpowiedzi

Skopiuj postgres tabeli

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

Kopiuj strukturę tabeli z PostgreSQL do MySQL

sqlpipe transfer \
  --source-ds-type "postgresql" \
  --source-hostname "your-postgresql-hostname" \
  --source-port 5432 \
  --source-db-name "your-postgresql-db-name" \
  --source-username "your-postgresql-username" \
  --source-password "your-postgresql-password"
  --target-ds-type "mysql" \
  --target-hostname "your-mysql-hostname" \
  --target-port 3306 \
  --target-db-name "your-mysql-db-name" \
  --target-username "your-mysql-username" \
  --target-password "your-mysql-password" \
  --target-table "name-of-table-to-insert-into" \
  --overwrite \
  --query "select * from public.users"
Gorgeous Gazelle

Odpowiedzi podobne do “Kopiuj strukturę tabeli z PostgreSQL do MySQL”

Pytania podobne do “Kopiuj strukturę tabeli z PostgreSQL do MySQL”

Więcej pokrewnych odpowiedzi na “Kopiuj strukturę tabeli z PostgreSQL do MySQL” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu