1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
CREATE TABLE `defilant_nom` (
`Designation` varchar(100) NOT NULL,
`Image` varchar(100) NOT NULL,
`Ordre` float UNSIGNED DEFAULT '1',
PRIMARY KEY (`Image`),
KEY `Designation` (`Designation`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Contenu de la table `defilant_nom`
--
INSERT INTO `defilant_nom` (`Designation`, `Image`, `Ordre`) VALUES
('Defilant 1', 'amazigh-100.jpg', 3),
('Defilant 1', 'fonte-flamme-100.jpg', 2),
('Defilant 1', 'marpillat-100.jpg', 1),
('Defilant 2', 'http://www.abciweb.net/PHOTO/ATV_45.jpg', 2),
('Defilant 2', 'http://www.abciweb.net/PHOTO/ATV_44.jpg', 1),
('Defilant 1', 'abciweb-100.jpg', 0),
('Defilant 1', 'la_courte_echelle_100.jpg', 4),
('Defilant 1', 'persephone-100.jpg', 5),
('Defilant 2', 'http://www.abciweb.net/PHOTO/ATV_47.jpg', 3),
('Defilant 2', 'http://www.abciweb.net/PHOTO/ATV_82.jpg', 4),
('Defilant 2', 'http://www.abciweb.net/PHOTO/Atelier_vitrail_presentation.jpg', 0),
('Defilant 2', 'http://www.abciweb.net/PHOTO/ATV_78.jpg', 6);
Syntaxe: [ Télécharger ] [ Masquer ] [ Sélectionner ] [ Agrandir ]
Code sql
CREATE TABLE `defilant_images` (
`Image` varchar(100) NOT NULL,
`Largeur` smallint(5) UNSIGNED DEFAULT '0',
`Hauteur` smallint(5) UNSIGNED DEFAULT '0',
`Description` tinytext,
`Lien` tinytext,
PRIMARY KEY (`Image`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Contenu de la table `defilant_images`
--
INSERT INTO `defilant_images` (`Image`, `Largeur`, `Hauteur`, `Description`, `Lien`) VALUES
('amazigh-100.jpg', 71, 100, 'Camping Amazigh Azrou Maroc', 'http://www.campingamazigh.com/'),
('aned_mau-100.jpg', 123, 100, 'Gîte en tipis', ''),
('fonte-flamme-100.jpg', 110, 100, 'Fabricant importateur de chauffage au bois : poêles à bois, poêles à granulés, inserts fonte et acier, cheminées traditionnelles, cheminées métalliques, chaudières, cuisinières.', 'http://www.fonte-flamme.com/'),
('marpillat-100.jpg', 74, 100, 'Tailleur de pierre, maçonnerie pierre dans le puy de dôme.', 'http://www.ateliermarpillat.com/'),
('cerise_piano_100.jpg', 167, 100, 'Spectacle musical', NULL),
('infocritique-100.jpg', 113, 100, 'Info critique', 'http://avmr.free.fr/'),
('abciweb-100.jpg', 95, 100, 'Création de sites internet sur mesure Clermont-Ferrand Puy de Dôme 63.', 'http://www.abciweb.net/'),
('la_courte_echelle_100.jpg', 138, 100, 'Coaching, orientation, conseils pour particuliers et entreprises.', 'http://www.la-courte-echelle.com/'),
('persephone-100.jpg', 101, 100, 'Collectif d''artiste, spectacles multimédias, musique électroacoustique.', 'http://www.collectifodma.net/'),
('http://www.abciweb.net/PHOTO/Atelier_vitrail_presentation.jpg', 180, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'),
('http://www.abciweb.net/PHOTO/ATV_45.jpg', 143, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'),
('http://www.abciweb.net/PHOTO/ATV_47.jpg', 177, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'),
('http://www.abciweb.net/PHOTO/ATV_82.jpg', 137, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'),
('http://www.abciweb.net/PHOTO/ATV_78.jpg', 144, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'),
('http://www.abciweb.net/PHOTO/ATV_44.jpg', 127, 237, 'Vitraux d''art sur mesure pour particuliers et monuments historiques.', 'http://mireilleribeyron.free.fr'); |
Partager