Comandos básicos de SQL

VISUALIZAR BASE DE DATOS EXISTENTES
show databases;

PARA CREAR UNA BASE DE DATOS
create database PAPELERIA;

SELECCIONAR UNA BASE DE DATOS
use PAPELERIA;

ELIMINAR UNA BASE DE DATOS
drop database PAPELERIA;

Crear base de datos
create table PRODUCTO(clave int(5));

VISUALIZAR LAS TABLAS DE LA BASE DE DATOS
show tables;

PAR VISUALIZAR SU ESTRUCTURA DE DATOS DE UNA TABLA
describe PRODUCTO;

ELIMINAR UNA TABLA
drop table PRODUCTO;

PARA INSERTAR UN REGISTRO
insert into PRODUCTO values (1,"Juan Dominguez","2019/05/01");

MOSTRAR LOS REGISTROS DE LA TABLA(consulta simple)
select * from PRODUCTO;

PARA CAMBIAR EL VALOR DEL TAMAÑO DEL TIPO DE DATO
alter table CLIENTE modify clave_c int(7);

PARA ASIGANAR LA LLAVE PRIMARIA
alter table CLIENTE modify clave_c int(7) primary key;

PARA ASIGNAR QUE SEA NULL
alter table CLIENTE modify clave_c int(7) not null;

PARA MODIFICAR EL NOMBRE DE UN CAMPO
alter table PRODUCTO change fecha fecha_compra date;

PARA HACER UNA REFERENCIA
create table COMPRA(folio int(5) primary key not null,clave_p int(5) references PRODUCTO (clave_p),clave int(5) REFERENCES CLIENTE(clave_c),fecha date);


Comentarios

Entradas populares de este blog

Ejercicios de base de datos relacionales

EJERCICIO DE BASE DE DATOS