“insertar si no existe PostgreSQL” Código de respuesta

Crear tabla si no existe PostgreSQL

CREATE TABLE IF NOT EXISTS table_name(id INT);
Yasha

insertar si no existe PostgreSQL

INSERT INTO example_table (id, name)
SELECT 1, 'John'
WHERE
    NOT EXISTS (
        SELECT id FROM example_table WHERE id = 1
    );
VasteMonde

Respuestas similares a “insertar si no existe PostgreSQL”

Preguntas similares a “insertar si no existe PostgreSQL”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código