Ejemplo 1: modificar la columna de eliminación de la tabla
ALTER TABLE "table_name" DROP "column_name";
Ejemplo 2: como eliminar los datos de una tabla en sql
DELETE FROM table_name; //will delete the table data without affecting the table structue
Ejemplo 3: columna de eliminación de sql
Deletes a column from a table.
Example: Removes the first_name column from the users table.
ALTER TABLE users
DROP COLUMN first_name
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)