本文介绍了删除数据库中的条目后如何减少列中的自动编号的值.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个表,其中有一个自动编号(主键)和与该条目相对应的其他字段.
如果我删除一个条目,例如否".该表中的138,下次我进入前端时,它会收到139
但我希望前端将其设为138.

并且我已经删除了条目号. 138.
有什么办法(SQL查询)可以更改数据库中的条目,以便我的前端指向条目号138而不是139.

I have a table in which there is a autonumber(Primary Key) and other fields correponding to that entry.
If I delete an entry for eg no. 138 from that table , the next time i go to front end I recieve it as 139
But I want the front end to take it as 138.

and I have already Deleted entry no. 138.
Is there any way (Sql Query) by which I can change the entry in database so that my front end would point to entry no.138 instead of 139.

推荐答案


这篇关于删除数据库中的条目后如何减少列中的自动编号的值.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 14:40