Ejemplo 1: postgresql agregar columna con restricción
ALTER TABLE customers
ADD COLUMN contact_name VARCHAR NOT NULL;
Ejemplo 2: modificar la tabla agregar varias columnas postgresql
ALTER TABLE customer
ADD COLUMN fax VARCHAR,
ADD COLUMN email VARCHAR;
Ejemplo 3: postgres cómo agregar un campo creado en
CREATE TABLE my_table
(
id serial NOT NULL,
user_name text,
created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP //here
)
Ejemplo 4: alterar tabla agregar columna postgres
Alter Postgres Table
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)