Django Relational Object Mapping (Object relational Mapping, short ORM)

Source: Internet
Author: User

Model

    • Create databases, Design table structures and fields

Django follows code Frist: automatically generate database tables based on classes defined in your code

 from Import Models    class UserInfo (models. Model):    = models. Charfield (max_length=30)    = models. Emailfield ()    = models. TextField ()

Even table structure

    • One-to-many: models. ForeignKey (Other tables)
    • Many-to-many: models. Manytomanyfield (Other tables)
    • One to one: models. Onetoonefield (Other tables)

Action table

 #Increase        #models. Tb1.objects.create (c1= ' xx ', c2= ' oo ') adds a piece of data that can accept the dictionary type data **kwargs    #obj = models. TB1 (c1= ' xx ', c2= ' oo ')    #Obj.save ()    #Check    #    #models. Tb1.objects.get (id=123) # Get a single piece of data that doesn't exist then an error (not recommended)    #models. Tb1.objects.all () # Get all    #models. Tb1.objects.filter (Name= ' seven ') # gets the data for the specified condition    #Delete    #    #models. Tb1.objects.filter (Name= ' seven '). Delete () # Deletes data for the specified condition    #Change    #models. Tb1.objects.filter (Name= ' seven '). Update (gender= ' 0 ') # Updates the data for the specified criteria, all supported **kwargs    #obj = models. Tb1.objects.get (id=1)    #obj.c1 = ' 111 '    #Obj.save () # Modify a single piece of data

Django Relational Object Mapping (Object relational Mapping, short ORM)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.