Hola... gracias al grande GOOGLE absolví mi duda:
el script de la tabla NOTICIAS quedaría así:
Código:
CREATE TABLE noticias (
id_noticia INT(11) NOT NULL AUTO_INCREMENT,
titulo VARCHAR(50) NULL,
fecha DATE NULL,
hora DATETIME NULL,
descripcion LONGBLOB NULL,
imagen LONGBLOB NULL,
id_autor VARCHAR(6),
id_categorias INT(11),
PRIMARY KEY(id_noticia),
Key (id_autor),
FOREIGN KEY(id_autor)
REFERENCES autor(id_autor)
ON DELETE SET NULL
ON UPDATE CASCADE,
Key (id_categorias),
FOREIGN KEY(id_categorias)
REFERENCES categorias(id_categorias)
ON DELETE SET NULL
ON UPDATE CASCADE
);
Corre con toda normalidad, ya le hice varias consultas y parece que anda bien.
De toas maneras sigo esperando vuestra respuesta para que den sus OBSERVACIONES u OPTIMIZAR la base de datos.
SAlu2!!!