par
flotix » 17 avr. 2006, 11:48
Voilà si on voudrait reproduire la table:
Code : Tout sélectionner
CREATE TABLE `download` (
`id` int(11) NOT NULL auto_increment,
`titre` varchar(255) collate latin1_german2_ci NOT NULL,
`contenu` text collate latin1_german2_ci NOT NULL,
`timestamp` bigint(20) NOT NULL,
`pseudo` text collate latin1_german2_ci NOT NULL,
`valide` enum('0','1') collate latin1_german2_ci NOT NULL,
`lienforum` text collate latin1_german2_ci NOT NULL,
`titreindex` text collate latin1_german2_ci NOT NULL,
`categorie` text collate latin1_german2_ci NOT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=21 ;
Voilà si on voudrait reproduire la table:
[code]CREATE TABLE `download` (
`id` int(11) NOT NULL auto_increment,
`titre` varchar(255) collate latin1_german2_ci NOT NULL,
`contenu` text collate latin1_german2_ci NOT NULL,
`timestamp` bigint(20) NOT NULL,
`pseudo` text collate latin1_german2_ci NOT NULL,
`valide` enum('0','1') collate latin1_german2_ci NOT NULL,
`lienforum` text collate latin1_german2_ci NOT NULL,
`titreindex` text collate latin1_german2_ci NOT NULL,
`categorie` text collate latin1_german2_ci NOT NULL,
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=21 ;[/code]