Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 264611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:42:00+00:00 2026-05-11T22:42:00+00:00

Is there a way to autoincrement a field with respect to the previous one…e.g

  • 0

Is there a way to autoincrement a field with respect to the previous one…e.g if the previous record has the value 09-0001, then the next record should be assigned 09-0002 and so one…ideas? I’m thinking of overriding the save method, but how exactly I’m not so sure

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T22:42:00+00:00Added an answer on May 11, 2026 at 10:42 pm

    Django won’t let you have more than one AutoField in a model, and you already have one for your primary key. So you’ll have to override save and will probably need to look back at the table to figure out what to increment.

    Something like this:

    class Product(models.Model): 
       code = models.IntegerField()
       number = models.IntegerField()
       ...
    
       def get_serial_number(self): 
          "Get formatted value of serial number"
          return "%.2d-%.3d" % (self.code, self.product)
    
       def save(self): 
          "Get last value of Code and Number from database, and increment before save"
          top = Product.objects.order_by('-code','-number')[0]
          self.code = top.code + 1
          self.number = top.number + 1
          super(Product, self).save()
    
       # etc.
    

    Note that without some kind of locking in your save method, you can run into a concurrency problem (two threads trying to store the same values in code and number).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there way in next piece of code to only get the first record?
I have an Id field annotated with @GeneratedValue . Is there any way to
Is there a way with MySQL (5.0 specifically) to have an auto_increment field who's
Is there a way to guarantee a unique (auto-increment integer) field for MongoDB? I
Is there a way to get the name of primary key field from mysql-database?
This mysql table has an autoincrement field. I want to duplicate some rows. I
Is there a way to generate a field in fuel php that is an
is there way thats i can preselect an item when the page loads or
is there way how to get name ov event from Lambda expression like with
Is there way to better identify design pattern in source codes, esp. if you

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.