requête SQL pour retourner le nom du champ d'une table

select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS 
where TABLE_NAME = 'tablename'
Code with bulbul