gpt4 book ai didi

mysql - 我怎样才能找到一个列是否在 mysql 中是 auto_increment?

转载 作者:可可西里 更新时间:2023-11-01 06:35:18 26 4
gpt4 key购买 nike

我正在尝试检查我的 mysql 数据库 information_schema 以找出列的属性。我找不到关于哪些列是 auto_increment 的详细信息。有谁知道我可以在 information_schema DB 中的哪个位置找到此信息?

最佳答案

查看 COLUMNS 表中的 EXTRA 列:

select * from COLUMNS where  TABLE_SCHEMA='yourschema' and TABLE_NAME='yourtable' and EXTRA like '%auto_increment%'

关于mysql - 我怎样才能找到一个列是否在 mysql 中是 auto_increment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/468664/

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