
25/11/2004, 15:44
|
 | | | Fecha de Ingreso: enero-2002
Mensajes: 701
Antigüedad: 23 años, 3 meses Puntos: 8 | |
Use ALTER COLUMN to change the data type of an existing field. You specify the field name, the new data type, and an optional size for Text and Binary fields. For example, the following statement changes the data type of a field in the Employees table called ZipCode (originally defined as Integer) to a 10-character Text field:
ALTER TABLE Employees ALTER COLUMN ZipCode TEXT(10)
---
Myakire hasta allí tengo solucionado el tipo y el largo!
pero.. como renombro o altero el nombre de la columna? |