Il s'agit d'une question en double :
crédit à Lukmdo pour cette réponse :
Cela n'est peut-être pas conseillé, mais fonctionne très bien :
show index from TABLE where Key_name = 'PRIMARY' ;
Le moyen le plus sûr consiste à utiliser information_schema :
SELECT k.COLUMN_NAME
FROM information_schema.table_constraints t
LEFT JOIN information_schema.key_column_usage k
USING(constraint_name,table_schema,table_name)
WHERE t.constraint_type='PRIMARY KEY'
AND t.table_schema=DATABASE()
AND t.table_name='owalog';