Salut,

J'ai une table 'page' comme ceci:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
  `page_id` int(8) NOT NULL auto_increment,
  `page_date` time NOT NULL,
  `picbook_id` int(8) NOT NULL default '0',
  `chapter_id` int(8) NOT NULL default '0',
  `page_number` int(8) NOT NULL default '0',
  `page_text` text NOT NULL,
  `bg_page_id` int(8) NOT NULL,
J'aimerais faire un export de cette table en spécifiant "where picbook=12", comment je peux faire avec phpmyadmin ?

Merci,
Vincent.