tabla - eliminar columna sql
¿Qué aspecto tiene la sintaxis de Alter Table para agregar una columna DATETIME? (2)
Si alguna vez tiene dudas, la sintaxis se explica aquí http://dev.mysql.com/doc/refman/5.5/en/alter-table.html
ALTER TABLE yourTable
ADD COLUMN new_date DATETIME NOT NULL DEFAULT 20110126143000 AFTER preceding_col
o
ALTER TABLE yourTable
ADD COLUMN new_date DATETIME NOT NULL DEFAULT ''2011-01-26 14:30:00'' AFTER preceding_col
(Yo prefiero el formato DATETIME numérico)
No puedo encontrar el aspecto de la sintaxis para agregar una columna DATETIME a una tabla mysql cuando quiero configurar el valor predeterminado en - ejemplo - 2011-01-26 14:30:00
¿Alguien sabe cómo se ve esa sintaxis?
Esto es lo que tengo
ADD COLUMN new_date DATETIME AFTER preceding_col,
Gracias
ALTER TABLE `yourTable`
ADD `new_date` DATETIME NOT NULL
DEFAULT ''2011-01-26 14:30:00''
AFTER `preceding_col`