Ejemplo creando eliminando y mostrando tablas mysql
En este ejemplo crearemos una tabla y estableceremos cambios dentro de ella, todo con mysql.
Agredrando columna
aquí el código:
aquí el código:
use pruebas
#definiendo tabla
create table dato ( id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, nombre (varchar(11)) NOT NULL)
#CREando tabla
CREATE table personas()
id VARCHAR(25) DEFAULT,
nombre TINYINT not null,
campoerror varchar(15),
apellido varchar(12) not null,
edad TINYINT not null;
ciudad varchar(15) NOT null;
pais varchar(20) not null
)Engine = InnoDB;
alter table personas modify TINYINT;
#establecer primary key
ALTER TABLE personas ADD PRIMARY KEY (Tarjeta);
#eliminando llave primaria
ALTER TABLE personas DROP PRIMARY KEY
#Estableciendo valor
ALTER TABLE personas modify edad TINYINT UNSIGNED NOT NULL;
#definiendo tabla
create table dato ( id TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, nombre (varchar(11)) NOT NULL)
#CREando tabla
CREATE table personas()
id VARCHAR(25) DEFAULT,
nombre TINYINT not null,
campoerror varchar(15),
apellido varchar(12) not null,
edad TINYINT not null;
ciudad varchar(15) NOT null;
pais varchar(20) not null
)Engine = InnoDB;
alter table personas modify TINYINT;
#establecer primary key
ALTER TABLE personas ADD PRIMARY KEY (Tarjeta);
#eliminando llave primaria
ALTER TABLE personas DROP PRIMARY KEY
#Estableciendo valor
ALTER TABLE personas modify edad TINYINT UNSIGNED NOT NULL;
Comentarios
Publicar un comentario