码迷,mamicode.com
首页 > 数据库 > 详细

MySQL获得指定数据表中auto_increment自增id值的方法及实例

时间:2014-11-09 09:44:22      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   os   数据   div   on   log   代码   

http://kb.cnblogs.com/a/2357592/很多情况下,我们要提前用到当前某个表的auto_increment自增列id,可以通过执行sql语句来查询到这个id值。
show table status where name=’表名’
或者
show table status like ‘表名’

然后从查询到的结果集中获得auto_increment的值

代码实例:<?php mysql_connect("localhost","root",‘‘); mysql_select_db("test"); $sql="show table status where name=‘members‘"; $query=mysql_query($sql); $res=mysql_fetch_array($query); echo "当前表的自增id为:".$res[‘Auto_increment‘]; ?>

MySQL获得指定数据表中auto_increment自增id值的方法及实例

标签:blog   http   ar   os   数据   div   on   log   代码   

原文地址:http://www.cnblogs.com/svennee/p/4084485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!