Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/01/2007, 12:44
cpuser
 
Fecha de Ingreso: diciembre-2005
Ubicación: Mar del Plata
Mensajes: 146
Antigüedad: 18 años, 4 meses
Puntos: 2
ayuda con diagramacion

que tal amigos... estoy haciendo un sitio web para un cliente y me pide lo siguiente:

un ingreso de boletines diarios que dentro de un mismo boletin hayan un maximo de 20 noticias..

la base de datos que tenia pensada en un principio era esta

Código:
CREATE TABLE IF NOT EXISTS `contenido` (
  `ID_Contenido` int(11) NOT NULL auto_increment,
  `Nombre_Contenido` varchar(100) NOT NULL default '',
  `Area_Contenido` varchar(100) NOT NULL default '',
  `Fecha_Contenido` varchar(100) NOT NULL default '',
  `Descripcion_Contenido` varchar(100) NOT NULL default '',
  `Texto_Completo` text NOT NULL,
  `Inicial` varchar(100) NOT NULL default '',
  `Imagen_Contenido` varchar(100) NOT NULL default '',
  PRIMARY KEY  (`ID_Contenido`),
  FULLTEXT KEY `Nombre_Contenido` (`Nombre_Contenido`,`Descripcion_Contenido`,`Texto_Completo`)
) TYPE=MyISAM
pero nose como hacer para que dentro de un mismo boletin, hayan 20 noticias..

que tendre que repetir los campos de la base de datos 20 veces? o a alguien se le ocurre una manera mejor y mas simplificada?