Code :
- --
- -- Structure de la table `test`
- --
- CREATE TABLE IF NOT EXISTS `test` (
- `id` int(11) NOT NULL auto_increment,
- `nom` varchar(100) collate utf8_bin NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=7 ;
- --
- -- Contenu de la table `test`
- --
- INSERT INTO `test` (`id`, `nom`) VALUES
- (1, 'a\\b'),
- (2, 'a\\\\b'),
- (3, 'a\\\\\\b'),
- (4, 'a\\\\\\\\b'),
- (5, 'a\\\\\\\\\\b'),
- (6, 'a\\\\\\\\\\\\b');
|