gpt4 book ai didi

mysql - SQL查询查找表的主键?

转载 作者:IT老高 更新时间:2023-10-28 23:53:39 24 4
gpt4 key购买 nike

如何通过查询找到表的主键

最佳答案

这是重复的 question :

感谢 Lukmdo 这个答案:

可能不建议这样做,但效果很好:

show index from TABLE where Key_name = 'PRIMARY' ;

可靠的方法是使用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';

关于mysql - SQL查询查找表的主键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12379221/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com