gpt4 book ai didi

php - 我如何获得自动增量字段mysql

转载 作者:太空宇宙 更新时间:2023-11-03 11:00:53 25 4
gpt4 key购买 nike

如何使用 ALTER TABLE 获取自动递增的字段名称

或者

有没有其他办法获取自增字段

最佳答案

你可以得到像这样的表的详细信息

$res = $mysqli->query('SHOW COLUMNS FROM tablename');

while($row = $res->fetch_assoc()) {
if ($row['Extra'] == 'auto_increment')
echo 'Field with auto_increment = '.$row['Field'];
if ($row['Key'] == 'PRI')
echo 'Field with primary key = '.$row['Field'];
}

关于php - 我如何获得自动增量字段mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15968132/

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