SQL query to find Primary Key of a table?

前端 未结 8 447
耶瑟儿~
耶瑟儿~ 2021-02-04 01:30

How can I find which column is the primary key of a table by using a query?

8条回答
  •  不知归路
    2021-02-04 02:01

    This is a duplicate question:

    credit to Lukmdo for this answer:

    It might be not advised but works just fine:

    show index from TABLE where Key_name = 'PRIMARY' ;
    

    The solid way is to use 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';
    

提交回复
热议问题